:root {
  --bg: #F8F6F1;
  --surface: #FFFFFF;
  --text: #111111;
  --muted: #6E6E6E;
  --border: rgba(0,0,0,0.08);
  --accent: #111111;
  --accent-purple: #6D4DF7;
  --accent-blue: #265CFF;
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 24px 80px rgba(0,0,0,0.08);
  --shadow-card: 0 14px 40px rgba(17,17,17,0.07);
  --container: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  max-width: 100%;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 16%, rgba(109,77,247,0.10), transparent 28%),
    radial-gradient(circle at 82% 5%, rgba(38,92,255,0.08), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.45), rgba(248,246,241,0));
}

.section-pad {
  padding: 82px 24px;
}

.section {
  max-width: var(--container);
  margin: 0 auto;
}

.section[id] {
  scroll-margin-top: 110px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  max-width: 1380px;
  margin: 22px auto 0;
  padding: 16px 22px;
  border-radius: 34px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(17,17,17,0.07);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 70px rgba(17,17,17,0.06);
}

.header-menu {
  display: contents;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-weight: 500;
  letter-spacing: -0.04em;
  font-size: 28px;
  box-shadow: none;
}

.brand-logo {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-wordmark {
  display: grid;
  gap: 1px;
  line-height: .9;
}

.brand-wordmark small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .02em;
}

.nalto-mark {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nalto-mark.small {
  width: 28px;
  height: 28px;
}

.nalto-mark.on-dark {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.40));
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: #fff;
  background: var(--text);
  font-size: 18px;
  box-shadow: inset 0 -8px 18px rgba(109,77,247,0.45);
}

.brand-mark.small {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  font-size: 14px;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(17,17,17,0.72);
  font-size: 15px;
  font-weight: 800;
}

.nav a {
  padding: 10px 0;
  border-radius: 0;
}

.nav a,
.footer-links a,
.legal-links a,
.cookie-banner a {
  transition: color .25s ease, opacity .25s ease, background .25s ease;
}

.nav a:hover,
.footer-links a:hover,
.legal-links a:hover,
.cookie-banner a:hover {
  color: var(--accent-purple);
}

.nav a:hover {
  background: transparent;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}

.login-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 2px;
  border-radius: 999px;
  color: rgba(17,17,17,0.68);
  font-size: 15px;
  font-weight: 800;
  transition: color .25s ease, background .25s ease;
}

.login-link:hover {
  color: var(--accent-purple);
  background: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.12);
}

.btn-dark {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-light {
  background: rgba(255,255,255,0.76);
  color: var(--text);
}

.btn-white {
  background: #fff;
  color: var(--text);
}

.btn-ghost-dark {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.18);
}

.btn-small {
  min-height: 52px;
  padding: 0 24px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 18px;
  background: var(--text);
  padding: 0;
}

.menu-toggle-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 14px;
}

.menu-toggle-icon span {
  position: absolute;
  left: 0;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle-icon span:first-child {
  top: 2px;
}

.menu-toggle-icon span:last-child {
  bottom: 2px;
}

.hero {
  padding-top: 54px;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: stretch;
  align-items: center;
  max-width: var(--container);
  min-height: 720px;
  margin: 0 auto;
  padding: 72px 56px;
  border: 1px solid var(--border);
  border-radius: 44px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.46)),
    radial-gradient(circle at 50% 18%, rgba(109,77,247,0.11), transparent 30%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 26%, rgba(255,255,255,0.9), rgba(255,255,255,0.48) 38%, rgba(248,246,241,0.22) 68%),
    linear-gradient(180deg, rgba(248,246,241,0.34), rgba(248,246,241,0.72));
  pointer-events: none;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .96;
  pointer-events: none;
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 20px;
  z-index: 2;
  border: 1px dashed rgba(109,77,247,0.22);
  border-radius: 34px;
  pointer-events: none;
}

.hero-layout,
.hero-side,
.hero-center {
  position: relative;
  z-index: 2;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(330px, .72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  width: 100%;
}

.side-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-purple);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.eyebrow svg {
  width: 16px;
  height: 16px;
}

.provider-stack.compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.provider-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);
  font-size: 12px;
  font-weight: 800;
  animation: float 6s ease-in-out infinite;
}

.provider-card:nth-child(2n) {
  animation-delay: -2s;
}

.provider-card img {
  display: block;
  width: auto;
  max-width: 96px;
  max-height: 50px;
  object-fit: contain;
}

.provider-initial {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 11px;
  color: #fff;
  background: var(--accent-purple);
  font-size: 12px;
  font-weight: 900;
}

.provider-grid .provider-initial {
  margin-top: 0;
}

.provider-card small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(100%, 760px);
  text-align: left;
}

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

h1 {
  max-width: 860px;
  margin-top: 18px;
  font-size: clamp(40px, 4.6vw, 50px);
  line-height: .98;
  letter-spacing: -0.065em;
}

h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.055em;
}

.eyebrow + h2 {
  margin-top: 14px;
}

h3 {
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero-copy,
.section-heading p,
.section-copy p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.section-heading p {
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-phone {
  justify-self: center;
  width: min(100%, 390px);
  perspective: 1200px;
}

.phone-frame {
  position: relative;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.52);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.86), rgba(233,228,255,0.54)),
    #fff;
  box-shadow: 0 34px 110px rgba(17,17,17,0.22), 0 20px 60px rgba(109,77,247,0.18);
  transform: rotate(-2deg);
  animation: phoneFloat 7s ease-in-out infinite;
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: 12% -14% auto auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(109,77,247,0.22);
  filter: blur(38px);
  pointer-events: none;
}

.phone-speaker {
  position: absolute;
  left: 50%;
  top: 14px;
  z-index: 4;
  width: 78px;
  height: 8px;
  border-radius: 999px;
  background: rgba(17,17,17,0.16);
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 620px;
  padding: 20px 12px 12px;
  border: 1px solid rgba(17,17,17,0.05);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(109,77,247,0.18), transparent 38%),
    linear-gradient(180deg, #101014, #171522 58%, #14121d);
  overflow: hidden;
}

.phone-call-head {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 16px 15px;
  border-radius: 18px;
  background: rgba(255,255,255,0.09);
  color: #fff;
  backdrop-filter: blur(18px);
}

.phone-call-head strong,
.phone-call-head small,
.phone-live {
  display: block;
}

.phone-call-head strong {
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.phone-call-head small {
  color: rgba(255,255,255,0.62);
  line-height: 1.35;
  font-weight: 700;
}

.phone-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.74);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.phone-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #61f29a;
  box-shadow: 0 0 0 7px rgba(97,242,154,0.12);
  animation: livePulse 1.5s ease-in-out infinite;
}

.phone-chat-window {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 154px;
  bottom: 10px;
  height: auto;
  padding: 9px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 19px;
  background: rgba(248,246,241,0.90);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
  overflow: hidden;
}

.phone-chat-window::before,
.phone-chat-window::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  height: 42px;
  pointer-events: none;
}

.phone-chat-window::before {
  top: 0;
  background: linear-gradient(180deg, rgba(248,246,241,0.92), rgba(248,246,241,0));
}

.phone-chat-window::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(248,246,241,0.92), rgba(248,246,241,0));
}

.phone-chat-track {
  display: grid;
  gap: 10px;
  animation: phoneChatScroll 22s ease-in-out infinite;
}

.chat-bubble {
  width: 86%;
  padding: 10px 11px;
  border-radius: 14px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 10px 28px rgba(17,17,17,0.08);
}

.chat-bubble span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.chat-bubble p {
  color: rgba(17,17,17,0.82);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 750;
}

.chat-bubble.client {
  justify-self: start;
  border-bottom-left-radius: 6px;
  background: #f1eee8;
}

.chat-bubble.manager {
  justify-self: end;
  border-bottom-right-radius: 6px;
  background: #111;
}

.chat-bubble.manager span {
  color: rgba(255,255,255,0.48);
}

.chat-bubble.manager p {
  color: #fff;
}

.chat-bubble.ai {
  justify-self: center;
  width: 92%;
  border: 1px solid rgba(109,77,247,0.12);
  background: linear-gradient(180deg, rgba(237,232,255,0.92), rgba(255,255,255,0.95));
}

.chat-bubble.ai span {
  color: var(--accent-purple);
}

.chat-bubble.summary-mini {
  background: linear-gradient(135deg, #111, #322b61);
}

.chat-bubble.summary-mini span {
  color: rgba(255,255,255,0.54);
}

.chat-bubble.summary-mini p {
  color: #fff;
}

.thinking-dots {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 18px;
}

.thinking-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-purple);
  animation: thinkingDot 1.1s ease-in-out infinite;
}

.thinking-dots i:nth-child(2) { animation-delay: .15s; }
.thinking-dots i:nth-child(3) { animation-delay: .3s; }

.microcopy {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.ai-layer-card {
  position: relative;
  width: min(100%, 470px);
  margin-top: 42px;
  padding: 24px;
  border: 1px solid rgba(109,77,247,0.18);
  border-radius: 30px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 24px 80px rgba(109,77,247,0.16);
  overflow: hidden;
}

.layer-glow {
  position: absolute;
  inset: -80px 30%;
  background: radial-gradient(circle, rgba(109,77,247,0.24), transparent 62%);
  animation: pulse 3s ease-in-out infinite;
}

.layer-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
}

.layer-tags {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.layer-tags span,
.summary-tags span,
.hint-chip-grid span,
.mini-list span {
  display: inline-flex;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(248,246,241,0.7);
  color: rgba(17,17,17,0.78);
  font-size: 12px;
  font-weight: 800;
}

.flow-line {
  position: absolute;
  top: 45%;
  z-index: 1;
  width: 280px;
  height: 150px;
  fill: none;
  stroke: rgba(109,77,247,0.45);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 7 11;
  animation: dashMove 2s linear infinite;
}

.flow-left {
  left: 23%;
}

.flow-right {
  right: 22%;
}

.result-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.result-card,
.dash-card,
.knowledge-card,
.kb-hint,
.price-card,
.benefit-panel,
.compare-card,
.summary-card-large,
.live-call-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow-card);
}

.result-card {
  padding: 18px;
  animation: float 7s ease-in-out infinite;
}

.result-card:nth-child(3) {
  animation-delay: -1.2s;
}

.result-card:nth-child(4) {
  animation-delay: -2.4s;
}

.result-card span,
.kb-hint span,
.plan,
.dash-label {
  color: var(--accent-purple);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.result-card p {
  margin-top: 8px;
  color: rgba(17,17,17,0.82);
  font-size: 14px;
  line-height: 1.45;
}

.result-card small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.hint-card.active {
  border-color: rgba(109,77,247,0.35);
  box-shadow: 0 20px 60px rgba(109,77,247,0.18);
}

.muted-card {
  opacity: .82;
}

.trust-strip {
  max-width: var(--container);
  margin: -42px auto 0;
  padding: 0 24px;
  overflow: hidden;
}

.trust-track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: marquee 28s linear infinite;
}

.trust-track span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.metrics-layout {
  display: grid;
  grid-template-columns: minmax(420px, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 24px;
}

.leader-dashboard {
  position: relative;
  min-height: 560px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 36px;
  background:
    radial-gradient(circle at 14% 14%, rgba(109,77,247,0.18), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,255,255,0.66));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.leader-dashboard::before {
  content: "";
  position: absolute;
  inset: auto -80px -120px 34%;
  height: 260px;
  border-radius: 999px;
  background: rgba(109,77,247,0.14);
  filter: blur(44px);
  pointer-events: none;
}

.leader-dashboard-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.leader-dashboard-top h3 {
  margin-top: 10px;
  font-size: clamp(27px, 3vw, 42px);
}

.leader-dashboard-top > strong {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 20px;
  background: #111;
  color: #fff;
  font-size: 38px;
  line-height: .9;
  letter-spacing: -0.06em;
  box-shadow: 0 22px 52px rgba(17,17,17,0.20);
}

.leader-dashboard-top strong span {
  color: rgba(255,255,255,0.56);
  font-size: 13px;
  letter-spacing: 0;
}

.score-ring {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 160px;
  height: 160px;
  margin: 28px auto 22px;
  border-radius: 50%;
  background: conic-gradient(var(--accent-purple) 0 82%, rgba(109,77,247,0.12) 82% 100%);
  box-shadow: 0 24px 70px rgba(109,77,247,0.20);
}

.score-ring::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
}

.score-ring span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 12%, rgba(255,255,255,0.72), transparent 28%);
}

.score-ring b {
  position: relative;
  z-index: 1;
  color: rgba(17,17,17,0.82);
  font-size: 16px;
  line-height: 1.12;
  letter-spacing: -0.04em;
  text-align: center;
}

.kpi-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.kpi-list div {
  display: grid;
  gap: 7px;
  padding: 13px;
  border: 1px solid rgba(17,17,17,0.06);
  border-radius: 20px;
  background: rgba(255,255,255,0.76);
}

.kpi-list span {
  color: var(--accent-purple);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.kpi-list strong {
  color: rgba(17,17,17,0.82);
  font-size: 14px;
  line-height: 1.35;
}

.kpi-list i {
  position: relative;
  height: 7px;
  border-radius: 999px;
  background: rgba(109,77,247,0.10);
  overflow: hidden;
}

.kpi-list i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--fill);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-purple), #111);
}

.attention-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.attention-grid div {
  min-height: 96px;
  padding: 13px;
  border-radius: 20px;
  background: #111;
  color: #fff;
}

.attention-grid b,
.attention-grid span {
  display: block;
}

.attention-grid b {
  font-size: 28px;
  line-height: .9;
  letter-spacing: -0.06em;
}

.attention-grid span {
  margin-top: 10px;
  color: rgba(255,255,255,0.66);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.metrics-copy p {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.metrics-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.metrics-cards article {
  min-height: 210px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(255,255,255,0.74);
  box-shadow: var(--shadow-card);
}

.metrics-cards svg {
  width: 24px;
  height: 24px;
  color: var(--accent-purple);
}

.metrics-cards strong {
  display: block;
  margin-top: 18px;
  font-size: 19px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.metrics-cards p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.metrics-note {
  padding: 18px 20px;
  border: 1px solid rgba(109,77,247,0.13);
  border-radius: 22px;
  background: rgba(237,232,255,0.54);
  font-weight: 800;
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.wide {
  max-width: 1100px;
}

.dashboard-mock {
  max-width: 1220px;
  margin: 0 auto;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 36px;
  background: rgba(255,255,255,0.58);
  box-shadow: var(--shadow-soft);
}

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(17,17,17,0.18);
}

.summary-status {
  color: var(--accent-purple);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 260px minmax(280px, 1fr) 320px;
  grid-template-rows: minmax(280px, auto) auto;
  gap: 14px;
}

.dash-card {
  padding: 22px;
}

.call-panel {
  grid-row: span 2;
}

.transcript-panel {
  min-height: 320px;
}

.hints-panel {
  min-height: 320px;
}

.summary-panel {
  grid-column: span 2;
}

.client-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.avatar {
  display: grid;
  place-items: center;
  min-width: 42px;
  width: 42px;
  height: 42px;
  border-radius: 17px;
  background: #ede8ff;
  color: var(--accent-purple);
  font-weight: 900;
}

.client-row small,
.meta-list,
.ai-hint-live small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.call-timer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 34px;
  letter-spacing: -0.05em;
}

.pulse-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #25c064;
  box-shadow: 0 0 0 0 rgba(37,192,100,0.35);
  animation: dotPulse 1.4s infinite;
}

.call-controls {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.call-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fff;
}

.call-controls svg {
  width: 17px;
  height: 17px;
}

.call-controls .end {
  color: #fff;
  background: #111;
}

.meta-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.meta-list span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.transcript-line {
  margin-top: 12px;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: rgba(17,17,17,0.55);
  background: rgba(248,246,241,0.55);
  transform: translateY(10px);
  opacity: .55;
  transition: opacity .45s ease, transform .45s ease, border-color .45s ease;
}

.transcript-line.active {
  opacity: 1;
  transform: translateY(0);
  color: var(--text);
  border-color: rgba(109,77,247,0.24);
}

.transcript-line.highlight {
  background: rgba(109,77,247,0.08);
}

.ai-hint-live {
  margin-top: 16px;
  padding: 20px;
  border-radius: 22px;
  background: #111;
  color: #fff;
  box-shadow: 0 18px 60px rgba(17,17,17,0.2);
  transform-origin: center;
  animation: hintPulse 3.4s ease-in-out infinite;
}

.ai-hint-live span,
.ai-hint-live small {
  color: rgba(255,255,255,0.62);
}

.ai-hint-live strong,
.ai-hint-live p,
.ai-hint-live small {
  display: block;
  margin-top: 12px;
}

.ai-hint-live p {
  color: rgba(255,255,255,0.78);
  line-height: 1.45;
}

.summary-ready {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--accent-purple);
  background: rgba(109,77,247,0.10);
  font-size: 12px;
  font-weight: 900;
}

.summary-panel p,
.summary-card-large h3 {
  margin-top: 14px;
  line-height: 1.45;
}

.summary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.task-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.task-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(17,17,17,0.78);
  font-size: 14px;
}

.task-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-purple);
  box-shadow: inset 0 0 0 5px #ede8ff;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: 38px;
}

.split-layout.reverse {
  grid-template-columns: minmax(420px, 1.1fr) minmax(0, .9fr);
}

.soft-note {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255,255,255,0.62);
}

.layered-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 50%, rgba(109,77,247,0.14), transparent 34%),
    radial-gradient(circle at 16% 20%, rgba(38,92,255,0.08), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.50), rgba(255,255,255,0.16));
  overflow: hidden;
}

.connection-glow {
  position: absolute;
  left: 58%;
  top: 50%;
  width: 360px;
  height: 220px;
  border-radius: 999px;
  background: rgba(109,77,247,0.14);
  filter: blur(34px);
  transform: translate(-50%, -50%);
  animation: glowBreath 4s ease-in-out infinite;
}

.connection-path {
  position: absolute;
  left: 38px;
  top: 72px;
  bottom: 72px;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(109,77,247,0.42), transparent);
  pointer-events: none;
  z-index: 1;
}

.connection-path::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(109,77,247,0.42) 50%, transparent 50%);
  background-size: 2px 18px;
  background-repeat: repeat-y;
  animation: pathDash 1.9s linear infinite;
}

.connection-path span {
  position: absolute;
  left: 50%;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-purple);
  box-shadow: 0 0 0 8px rgba(109,77,247,0.12), 0 0 28px rgba(109,77,247,0.55);
  transform: translate(-50%, -50%);
  animation: signalFlow 3.6s ease-in-out infinite;
}

.connection-path span:nth-child(2) {
  animation-delay: -1.8s;
}

.connection-node {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 64px minmax(180px, .7fr) minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  min-height: 112px;
  padding: 22px 26px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 22px 64px rgba(17,17,17,0.07);
  backdrop-filter: blur(14px);
}

.phone-node,
.team-node {
  justify-content: stretch;
}

.ai-node {
  min-height: 156px;
  align-items: center;
  text-align: left;
  border-color: rgba(109,77,247,0.28);
  background:
    radial-gradient(circle at 50% 0%, rgba(109,77,247,0.18), transparent 42%),
    rgba(255,255,255,0.96);
  box-shadow: 0 34px 100px rgba(109,77,247,0.20);
  overflow: hidden;
}

.ai-node::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(109,77,247,0.22);
  border-radius: 22px;
  pointer-events: none;
}

.ai-node::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(109,77,247,0.16) 42%, transparent 62%);
  transform: translateX(-120%);
  animation: layerSweep 3.8s ease-in-out infinite;
  pointer-events: none;
}

.connection-node strong {
  grid-column: 2;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.connection-node .layer-kicker {
  grid-column: 2;
}

.layer-index {
  grid-column: 1;
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 17px;
  color: var(--accent-purple) !important;
  background: rgba(109,77,247,0.10);
  font-size: 13px;
  font-weight: 900;
}

.ai-node .brand-mark {
  position: absolute;
  right: 26px;
  top: 22px;
}

.mini-provider-row,
.layer-feature-grid,
.outcome-pills {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  grid-column: 3;
  grid-row: 1 / 3;
  justify-content: flex-end;
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.layer-kicker {
  color: var(--accent-purple) !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.mini-provider-row img {
  display: block;
  width: 74px;
  max-height: 28px;
  object-fit: contain;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}

.layer-feature-grid span,
.outcome-pills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border: 1px solid rgba(109,77,247,0.14);
  border-radius: 999px;
  background: rgba(109,77,247,0.08);
  color: rgba(17,17,17,0.74);
  font-size: 12px;
  font-weight: 900;
}

.outcome-pills span {
  border-color: var(--border);
  background: rgba(248,246,241,0.74);
}

.outcome-pills svg {
  width: 14px;
  height: 14px;
  color: var(--accent-purple);
}

.how-section {
  position: relative;
  overflow: hidden;
}

.how-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(720px, 72vw);
  height: 260px;
  border-radius: 999px;
  background: rgba(109,77,247,0.10);
  filter: blur(70px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.how-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(109,77,247,0.10);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 0%, rgba(109,77,247,0.14), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.62), rgba(255,255,255,0.22));
  box-shadow: 0 30px 90px rgba(17,17,17,0.06);
  overflow: hidden;
}

.how-flow-line {
  position: absolute;
  left: 9%;
  right: 9%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(109,77,247,0.34), transparent);
  pointer-events: none;
}

.how-flow-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(109,77,247,0.42) 50%, transparent 50%);
  background-size: 18px 2px;
  animation: pathDashX 1.4s linear infinite;
}

.how-flow-line span {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-purple);
  box-shadow: 0 0 0 8px rgba(109,77,247,0.10), 0 0 28px rgba(109,77,247,0.45);
  transform: translateY(-50%);
  animation: howSignal 4.8s ease-in-out infinite;
}

.how-flow-line span:nth-child(2) {
  animation-delay: -2.4s;
}

.how-step {
  position: relative;
  z-index: 1;
  min-height: 250px;
  padding: 112px 24px 24px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 18px 48px rgba(17,17,17,0.055);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(24px) scale(.98);
  transition: transform .75s ease, opacity .75s ease, border-color .25s ease, box-shadow .25s ease;
}

.how-section.is-visible .how-step {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.how-section.is-visible .how-step:nth-of-type(2) { transition-delay: .08s; }
.how-section.is-visible .how-step:nth-of-type(3) { transition-delay: .16s; }
.how-section.is-visible .how-step:nth-of-type(4) { transition-delay: .24s; }
.how-section.is-visible .how-step:nth-of-type(5) { transition-delay: .32s; }
.how-section.is-visible .how-step:nth-of-type(6) { transition-delay: .40s; }
.how-section.is-visible .how-step:nth-of-type(7) { transition-delay: .48s; }

.how-step:hover {
  transform: translateY(-6px) scale(1);
  border-color: rgba(109,77,247,0.22);
  box-shadow: 0 26px 70px rgba(109,77,247,0.12);
}

.how-step svg,
.how-step .brand-mark,
.how-step .nalto-mark {
  position: absolute;
  right: 28px;
  top: 38px;
  width: 44px;
  height: 44px;
  margin-top: 0;
  color: var(--accent-purple);
}

.step-number {
  position: absolute;
  left: 24px;
  top: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 34px;
  border-radius: 999px;
  color: var(--accent-purple);
  background: rgba(109,77,247,0.10);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}

.how-step h3 {
  margin-top: 26px;
  max-width: 260px;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.how-step p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.primary-step {
  background:
    radial-gradient(circle at 88% 12%, rgba(109,77,247,0.14), transparent 32%),
    rgba(255,255,255,0.92);
}

.accent-step {
  color: #fff;
  border-color: rgba(17,17,17,0.12);
  background:
    radial-gradient(circle at 30% 0%, rgba(125,99,255,0.52), transparent 40%),
    #111;
  box-shadow: 0 30px 84px rgba(17,17,17,0.18);
  overflow: hidden;
}

.accent-step::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.12) 42%, transparent 62%);
  transform: translateX(-120%);
  animation: layerSweep 4s ease-in-out infinite;
  pointer-events: none;
}

.accent-step .step-number {
  color: #fff;
  background: rgba(255,255,255,0.14);
}

.accent-step p {
  color: rgba(255,255,255,0.68);
}

.accent-step .brand-mark,
.accent-step .nalto-mark {
  position: absolute;
  margin-top: 0;
}

.provider-universe {
  position: relative;
  display: grid;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

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

.provider-grid article,
.scenario-grid article,
.process-grid article,
.usecase-grid article {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255,255,255,0.76);
  box-shadow: 0 12px 30px rgba(0,0,0,0.045);
}

.provider-grid article {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  padding: 18px;
}

.provider-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 54px;
  color: var(--accent-purple);
}

.provider-logo img {
  display: block;
  max-width: 142px;
  max-height: 88px;
  object-fit: contain;
}

.provider-logo.gravitel-logo img {
  max-width: 168px;
}

.provider-grid svg,
.process-grid svg,
.usecase-grid svg {
  width: 22px;
  height: 22px;
  color: var(--accent-purple);
}

.usecase-grid svg {
  width: 34px;
  height: 34px;
}

.provider-grid strong,
.provider-grid span {
  display: block;
}

.provider-grid strong {
  margin-top: auto;
  font-size: 15px;
}

.provider-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.center-orb {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 82px;
  padding: 18px 24px;
  border: 1px solid rgba(109,77,247,0.18);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 50%, rgba(141,115,255,0.75), transparent 26%),
    linear-gradient(100deg, #111 0%, #271D4F 54%, #111 100%);
  box-shadow: 0 26px 80px rgba(109,77,247,0.20);
  overflow: hidden;
}

.center-orb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.18) 46%, transparent 64%);
  transform: translateX(-120%);
  animation: layerSweep 4.2s ease-in-out infinite;
}

.center-orb span {
  position: relative;
  color: rgba(255,255,255,0.7);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.center-orb strong {
  position: relative;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.center-orb small {
  position: relative;
  justify-self: end;
  max-width: 360px;
  color: rgba(255,255,255,0.74);
  line-height: 1.45;
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.orb-dots {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 2px;
  background: rgba(255,255,255,0.14);
}

.orb-dots i {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 20px rgba(255,255,255,0.75);
  transform: translate(-50%, -50%);
  animation: providerSignal 3.4s ease-in-out infinite;
}

.orb-dots i:nth-child(2) {
  animation-delay: -1.1s;
}

.orb-dots i:nth-child(3) {
  animation-delay: -2.2s;
}

.center-note {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted);
  text-align: center;
  line-height: 1.55;
  font-weight: 700;
}

.knowledge-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.knowledge-console {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.knowledge-flow {
  display: grid;
  grid-template-columns: minmax(310px, .86fr) minmax(0, 1.14fr);
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}

#knowledge .section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

#knowledge .section-heading h2 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

#knowledge .section-heading p {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.5;
}

.knowledge-brief,
.moment-workspace {
  padding: 22px;
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 30px;
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow-card);
}

.knowledge-brief {
  display: grid;
  gap: 14px;
}

.knowledge-brief p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.moment-stack {
  display: grid;
  gap: 8px;
}

.moment-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 4px 12px;
  width: 100%;
  scroll-margin-top: 110px;
  padding: 12px;
  border: 1px solid rgba(17,17,17,0.07);
  border-radius: 16px;
  background: rgba(248,246,241,0.7);
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.moment-card:hover,
.moment-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(109,77,247,0.24);
  background: #fff;
  box-shadow: 0 18px 42px rgba(109,77,247,0.10);
}

.moment-card small {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 11px;
  background: rgba(109,77,247,0.10);
  color: var(--accent-purple);
  font-size: 12px;
  font-weight: 900;
}

.moment-card strong,
.moment-card span {
  display: block;
}

.moment-card strong {
  font-size: 14px;
  font-weight: 900;
}

.moment-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.moment-workspace {
  background:
    radial-gradient(circle at 84% 10%, rgba(109,77,247,0.13), transparent 32%),
    rgba(255,255,255,0.82);
}

.moment-panel[hidden] {
  display: none;
}

.knowledge-source,
.knowledge-demo {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow-card);
}

.knowledge-source {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
}

.knowledge-source p {
  color: var(--muted);
  line-height: 1.55;
}

.knowledge-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(248,246,241,0.86);
}

.knowledge-tab {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(17,17,17,0.62);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.knowledge-tab.is-active {
  color: var(--text);
  background: #fff;
  box-shadow: 0 12px 30px rgba(17,17,17,0.08);
}

.knowledge-panel {
  min-height: 286px;
  padding: 28px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(109,77,247,0.48), transparent 34%),
    #111;
}

.knowledge-panel[hidden] {
  display: none;
}

.knowledge-panel span,
.knowledge-panel small {
  display: block;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  font-weight: 900;
}

.knowledge-panel h3 {
  margin-top: 16px;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.055em;
}

.knowledge-panel p {
  max-width: 620px;
  margin-top: 18px;
  color: #fff;
  font-size: 19px;
  line-height: 1.48;
  font-weight: 800;
}

.knowledge-panel small {
  margin-top: 24px;
}

.knowledge-card,
.kb-hint,
.summary-card-large,
.live-call-card {
  padding: 28px;
}

.card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.card-head svg {
  color: var(--accent-purple);
}

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

.doc-list span {
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(248,246,241,0.76);
  color: rgba(17,17,17,0.76);
  font-size: 13px;
  font-weight: 800;
}

.doc-list.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 14px 0 10px;
}

.doc-list.compact span {
  padding: 9px 10px;
  border-radius: 14px;
  font-size: 11px;
}

.knowledge-card p,
.kb-hint p,
.benefit-panel p,
.price-card p,
.summary-card-large .microcopy {
  color: var(--muted);
  line-height: 1.55;
}

.knowledge-hints {
  display: grid;
  gap: 18px;
}

.kb-hint.active {
  background: #111;
  color: #fff;
}

.kb-hint h3 {
  margin-top: 12px;
}

.kb-hint p,
.kb-hint small {
  display: block;
  margin-top: 12px;
}

.kb-hint.active p,
.kb-hint.active small {
  color: rgba(255,255,255,0.68);
}

.scenario-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 18px auto 0;
}

.scenario-grid article,
.process-grid article {
  padding: 22px;
}

.scenario-grid strong,
.scenario-grid span,
.process-grid strong,
.process-grid span {
  display: block;
}

.scenario-grid span,
.process-grid span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.feature-call {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 38px;
}

.hint-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.live-scenario-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 620px;
  margin-top: 28px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 14px 38px rgba(17,17,17,0.06);
}

.live-scenario-tab {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(17,17,17,0.62);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.live-scenario-tab.is-active {
  color: var(--text);
  background: #fff;
  box-shadow: 0 12px 30px rgba(17,17,17,0.08);
}

.live-call-card {
  background:
    radial-gradient(circle at 82% 12%, rgba(109,77,247,0.12), transparent 30%),
    rgba(255,255,255,0.8);
}

.live-call-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.live-call-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25c064;
  box-shadow: 0 0 0 7px rgba(37,192,100,0.12);
}

.live-call-head strong {
  color: var(--text);
}

.live-scenario-panel[hidden] {
  display: none;
}

.mini-transcript {
  display: grid;
  gap: 10px;
}

.mini-transcript span {
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(248,246,241,0.74);
  font-size: 15px;
  line-height: 1.4;
}

.ai-prompt-card {
  margin-top: 16px;
  padding: 22px;
  border-radius: 22px;
  color: #fff;
  background: #111;
  box-shadow: 0 26px 80px rgba(17,17,17,0.2);
}

.ai-prompt-card.compact {
  padding: 20px;
}

.ai-prompt-card small,
.ai-prompt-card span {
  color: rgba(255,255,255,0.6);
}

.ai-prompt-card strong,
.ai-prompt-card em,
.ai-prompt-card span {
  display: block;
  margin-top: 10px;
}

.ai-prompt-card p {
  display: block;
  margin-top: 10px;
  line-height: 1.45;
}

.ai-prompt-card em {
  color: #fff;
  font-style: normal;
  font-weight: 800;
}

.summary-card-large h3 {
  font-size: clamp(23px, 2.7vw, 32px);
}

.efficiency-heading {
  margin-bottom: 30px;
}

.summary-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.summary-fields div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(248,246,241,0.72);
}

.summary-fields b,
.summary-fields span {
  display: block;
}

.summary-fields span {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.4;
}

.efficiency-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1060px;
  margin: 0 auto;
}

.efficiency-card {
  position: relative;
  min-height: 370px;
  padding: 24px;
  border: 1px solid rgba(109,77,247,0.10);
  border-radius: 30px;
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.efficiency-card::before {
  content: "";
  position: absolute;
  inset: -130px 16% auto;
  height: 200px;
  border-radius: 999px;
  background: rgba(109,77,247,0.10);
  filter: blur(30px);
  pointer-events: none;
}

.efficiency-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 82px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(109,77,247,0.20), transparent);
  transform: scaleX(0);
  transition: transform .9s ease;
}

.efficiency-section.is-visible .efficiency-card::after {
  transform: scaleX(1);
}

.efficiency-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.efficiency-head span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.efficiency-head svg {
  width: 16px;
  height: 16px;
  color: var(--accent-purple);
}

.efficiency-head strong {
  font-size: clamp(27px, 3vw, 38px);
  line-height: .95;
  letter-spacing: -0.045em;
  transform: translateY(8px);
  opacity: .2;
  transition: transform .8s ease, opacity .8s ease;
}

.efficiency-section.is-visible .efficiency-head strong {
  transform: translateY(0);
  opacity: 1;
}

.line-chart,
.bar-chart {
  position: relative;
  margin-top: 24px;
}

.line-chart svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.chart-grid-line {
  fill: none;
  stroke: rgba(17,17,17,0.08);
  stroke-width: 1;
}

.chart-area {
  fill: rgba(109,77,247,0.10);
}

.chart-line {
  fill: none;
  stroke: var(--accent-purple);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  transition: stroke-dashoffset 1.6s ease-out;
}

.efficiency-section.is-visible .chart-line {
  stroke-dashoffset: 0;
}

.line-chart circle {
  fill: var(--accent-purple);
  filter: drop-shadow(0 0 12px rgba(109,77,247,0.42));
  opacity: 0;
  transform: scale(.55);
  transform-origin: center;
  transition: opacity .5s ease 1s, transform .5s ease 1s;
}

.efficiency-section.is-visible .line-chart circle {
  opacity: 1;
  transform: scale(1);
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
  min-height: 210px;
  padding: 10px 0 0;
}

.bar-chart div {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 210px;
}

.bar-chart div::before {
  content: "";
  width: min(42px, 72%);
  height: var(--bar);
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(180deg, #7D63FF, #111);
  box-shadow: 0 18px 34px rgba(109,77,247,0.18);
  transform: scaleY(.18);
  transform-origin: bottom;
  opacity: .5;
  transition: height .45s ease, transform 1s ease, opacity 1s ease;
}

.efficiency-section.is-visible .bar-chart div::before {
  transform: scaleY(1);
  opacity: 1;
}

.efficiency-section.is-visible .bar-chart div:nth-child(2)::before { transition-delay: .12s; }
.efficiency-section.is-visible .bar-chart div:nth-child(3)::before { transition-delay: .24s; }
.efficiency-section.is-visible .bar-chart div:nth-child(4)::before { transition-delay: .36s; }
.efficiency-section.is-visible .bar-chart div:nth-child(5)::before { transition-delay: .48s; }

.bar-chart span {
  position: absolute;
  bottom: -28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.efficiency-card p {
  position: relative;
  margin-top: 26px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

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

.pricing-includes {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  max-width: 980px;
  margin: -12px auto 22px;
  padding: 12px;
  border: 1px solid rgba(109,77,247,0.12);
  border-radius: 24px;
  background: rgba(255,255,255,0.62);
}

.pricing-includes span {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.pricing-includes ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.pricing-includes li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(17,17,17,0.07);
  border-radius: 999px;
  background: rgba(248,246,241,0.78);
  color: rgba(17,17,17,0.72);
  font-size: 12px;
  font-weight: 800;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.price-card.popular {
  border-color: rgba(109,77,247,0.35);
  box-shadow: 0 28px 90px rgba(109,77,247,0.16);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent-purple);
  font-size: 11px;
  font-weight: 900;
}

.price-card h3 {
  margin-top: 18px;
}

.price-card strong {
  display: block;
  margin-top: 16px;
  font-size: 34px;
  letter-spacing: -0.06em;
}

.price-card strong small {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0;
}

.price-card p {
  margin-top: 14px;
  min-height: 58px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 24px;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(17,17,17,0.74);
  font-size: 14px;
  line-height: 1.35;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-purple);
}

.price-card li.minute-option {
  margin-top: 2px;
  padding: 0 0 0 22px;
  border: 0;
  border-radius: 0;
  color: rgba(17,17,17,0.74);
  background: transparent;
}

.price-card li.minute-option::before {
  left: 0;
  top: 7px;
  background: rgba(109,77,247,0.48);
}

.price-card li.minute-option.on-dark {
  color: rgba(255,255,255,0.72);
  background: transparent;
}

.price-card li.minute-option.on-dark::before {
  background: rgba(255,255,255,0.48);
}

.price-card .btn {
  margin-top: auto;
}

.corporate {
  background: #111;
  color: #fff;
}

.corporate p,
.corporate li,
.corporate .plan {
  color: rgba(255,255,255,0.72);
}

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

.role-switcher {
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(109,77,247,0.12);
  border-radius: 36px;
  background: rgba(255,255,255,0.56);
  box-shadow: var(--shadow-soft);
}

.role-switch-head {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 12px 18px 18px;
}

.role-switch-head h2 {
  margin-top: 12px;
}

.role-switch-head p {
  max-width: 620px;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.role-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 680px;
  margin: 0 auto 14px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(248,246,241,0.86);
}

.role-tab {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(17,17,17,0.62);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.role-tab.is-active {
  color: var(--text);
  background: #fff;
  box-shadow: 0 12px 30px rgba(17,17,17,0.08);
}

.role-panel {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(320px, 1fr);
  align-items: center;
  gap: 22px;
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 18%, rgba(109,77,247,0.12), transparent 34%),
    rgba(255,255,255,0.86);
}

.role-panel[hidden] {
  display: none;
}

.role-panel h3 {
  max-width: 520px;
  margin-top: 14px;
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -0.055em;
}

.role-panel p {
  max-width: 560px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.role-panel .mini-list {
  align-content: center;
  margin-top: 0;
}

.role-panel .mini-list span {
  min-height: 42px;
  padding: 11px 14px;
  background: rgba(248,246,241,0.82);
}

.role-panel .call-table {
  margin-top: 0;
}

.role-panel .call-table div {
  grid-template-columns: 110px 1fr;
  background: rgba(248,246,241,0.82);
}

.role-panel-dark {
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(109,77,247,0.42), transparent 34%),
    #111;
}

.role-panel-dark p,
.role-panel-dark .eyebrow {
  color: rgba(255,255,255,0.7);
}

.role-panel-dark .mini-list span {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

.benefit-panel {
  min-height: 520px;
  padding: 30px;
}

.benefit-panel h2 {
  margin-top: 14px;
  font-size: clamp(28px, 2.9vw, 38px);
}

.benefit-panel h2 + p {
  margin-top: 18px;
}

.qa-report-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.84);
  box-shadow: var(--shadow-soft);
}

.qa-report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.qa-report-head span,
.coach-card span {
  color: var(--accent-purple);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.qa-report-head strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.qa-score {
  display: grid;
  place-items: center;
  min-width: 86px;
  height: 86px;
  border-radius: 28px;
  color: #fff;
  background: #111;
  box-shadow: 0 18px 50px rgba(17,17,17,0.16);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.qa-checks {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.qa-checks div {
  position: relative;
  padding: 16px 16px 16px 48px;
  border-radius: 18px;
  background: rgba(248,246,241,0.76);
}

.qa-checks div::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-purple);
  box-shadow: inset 0 0 0 5px #ede8ff;
}

.qa-checks .warning::before {
  background: #f5a524;
  box-shadow: inset 0 0 0 5px #fff1cf;
}

.qa-checks b,
.qa-checks span {
  display: block;
}

.qa-checks span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
  font-size: 14px;
}

.coach-card {
  margin-top: 16px;
  padding: 20px;
  border-radius: 22px;
  color: #fff;
  background: #111;
}

.coach-card p {
  margin-top: 10px;
  color: rgba(255,255,255,0.74);
  line-height: 1.5;
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.leader-panel {
  background:
    radial-gradient(circle at 80% 15%, rgba(109,77,247,0.14), transparent 30%),
    rgba(255,255,255,0.84);
}

.call-table {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

.call-table div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(248,246,241,0.76);
}

.call-table b {
  color: var(--muted);
  font-size: 12px;
}

.dark-mini {
  color: #fff;
  background: #111;
}

.dark-mini p,
.dark-mini .eyebrow {
  color: rgba(255,255,255,0.68);
}

.dark-mini .mini-list span {
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

.compare-interactive {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.compare-card {
  position: relative;
  min-height: 560px;
  padding: 34px;
  overflow: hidden;
}

.compare-card h3 {
  position: relative;
  z-index: 1;
}

.compare-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.compare-point {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 6px 12px;
  width: 100%;
  padding: 16px;
  border: 1px solid transparent;
  border-radius: 18px;
  text-align: left;
  background: rgba(248,246,241,0.75);
  color: rgba(17,17,17,0.78);
  font-weight: 700;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.compare-point:hover,
.compare-point.active {
  transform: translateX(6px);
  border-color: rgba(109,77,247,0.22);
  background: #fff;
  box-shadow: 0 16px 34px rgba(109,77,247,0.10);
}

.compare-point span {
  grid-row: span 2;
  color: var(--accent-purple);
  font-size: 12px;
  font-weight: 900;
}

.compare-point strong,
.compare-point small {
  display: block;
}

.compare-point small {
  color: var(--muted);
  line-height: 1.4;
  font-size: 13px;
}

.muted-compare {
  background:
    radial-gradient(circle at 12% 0%, rgba(109,77,247,0.06), transparent 34%),
    rgba(255,255,255,0.78);
}

.nalto-compare {
  color: #fff;
  background:
    radial-gradient(circle at 84% 8%, rgba(109,77,247,0.44), transparent 30%),
    #111;
  box-shadow: 0 30px 100px rgba(17,17,17,0.18);
}

.nalto-compare::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,0.10), transparent);
  transform: translateX(-120%);
  animation: layerSweep 4s ease-in-out infinite;
}

.compare-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nalto-compare p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}

.compare-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.compare-tags span {
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: rgba(255,255,255,0.84);
  background: rgba(255,255,255,0.08);
  font-size: 12px;
  font-weight: 900;
}

.compare-mini-flow {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 46px 1fr 46px 1fr;
  align-items: center;
  gap: 10px;
}

.compare-mini-flow span {
  padding: 16px 12px;
  border-radius: 18px;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.compare-mini-flow i {
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.18), rgba(109,77,247,0.92));
  animation: pathDashX 1.4s linear infinite;
}

.compare-bridge {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  color: var(--accent-purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.compare-bridge span {
  width: 2px;
  height: 130px;
  background: linear-gradient(180deg, transparent, rgba(109,77,247,0.45), transparent);
}

.compare-bridge strong {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 26px;
  color: #fff;
  background: #111;
  box-shadow: 0 22px 60px rgba(109,77,247,0.25);
  text-align: center;
}

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

.timeline article {
  position: relative;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(255,255,255,0.78);
}

.timeline article::after {
  content: "";
  position: absolute;
  top: 42px;
  right: -12px;
  width: 12px;
  border-top: 2px dashed rgba(109,77,247,0.35);
}

.timeline article:last-child::after {
  display: none;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: #fff;
  background: var(--text);
  font-weight: 900;
}

.timeline h3 {
  margin-top: 20px;
  font-size: 19px;
}

.timeline p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.45;
  font-size: 14px;
}

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

.usecase-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 238px;
  padding: 22px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.usecase-grid article::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-purple), transparent);
  transform: scaleX(.2);
  transform-origin: left;
  opacity: .35;
  transition: transform .25s ease, opacity .25s ease;
}

.usecase-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(109,77,247,0.20);
  box-shadow: 0 26px 70px rgba(109,77,247,0.10);
}

.usecase-grid article:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.usecase-grid strong {
  margin-top: auto;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.usecase-grid article > span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.45;
  font-size: 13px;
  font-weight: 700;
}

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

.process-grid strong {
  margin-top: 22px;
}

.final-cta {
  max-width: var(--container);
  margin: 0 auto;
}

.cta-inner {
  position: relative;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  border-radius: 44px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(109,77,247,0.38), transparent 38%),
    #171717;
  text-align: center;
  overflow: hidden;
}

.cta-inner::before,
.cta-inner::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 50%;
}

.cta-inner::before {
  left: 7%;
  top: 18%;
}

.cta-inner::after {
  right: 8%;
  bottom: 16%;
}

.cta-inner > * {
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  max-width: 860px;
  margin-top: 18px;
}

.cta-inner p {
  max-width: 700px;
  margin-top: 20px;
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  line-height: 1.55;
}

.cta-inner small {
  margin-top: 18px;
  color: rgba(255,255,255,0.58);
  font-weight: 800;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.lead-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.44);
  backdrop-filter: blur(12px);
}

.lead-modal-panel {
  position: relative;
  width: min(100%, 560px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 1px solid rgba(109,77,247,0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(109,77,247,0.14), transparent 36%),
    rgba(255,255,255,0.96);
  box-shadow: 0 34px 110px rgba(17,17,17,0.24);
  transform: translateY(16px) scale(.98);
  transition: transform .25s ease;
}

.lead-modal.is-open .lead-modal-panel {
  transform: translateY(0) scale(1);
}

.lead-modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fff;
}

.lead-modal-close::before,
.lead-modal-close::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 19px;
  width: 16px;
  height: 2px;
  border-radius: 99px;
  background: var(--text);
}

.lead-modal-close::before {
  transform: rotate(45deg);
}

.lead-modal-close::after {
  transform: rotate(-45deg);
}

.lead-modal-content {
  padding: 34px;
}

.lead-modal h2 {
  margin-top: 12px;
  padding-right: 48px;
}

.lead-step-form > p,
.lead-thanks p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.lead-step[hidden],
.lead-step.is-hidden,
.lead-form[hidden],
.lead-form.is-hidden,
.lead-thanks[hidden],
.lead-thanks.is-hidden,
.feedback-form[hidden],
.feedback-form.is-hidden {
  display: none !important;
}

.lead-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(17,17,17,0.72);
  font-size: 13px;
  font-weight: 900;
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"],
.feedback-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(17,17,17,0.10);
  border-radius: 18px;
  background: rgba(255,255,255,0.86);
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.feedback-form textarea {
  min-height: 120px;
  padding: 14px 16px;
  resize: vertical;
  line-height: 1.45;
}

.lead-form input:focus,
.feedback-form textarea:focus {
  border-color: rgba(109,77,247,0.38);
  box-shadow: 0 0 0 4px rgba(109,77,247,0.10);
}

.consent-row {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px !important;
  margin-top: 4px;
  color: var(--muted) !important;
  font-size: 12px !important;
  line-height: 1.4;
  font-weight: 800 !important;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--accent-purple);
}

.consent-row a {
  color: #4f35df;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.consent-row a:hover {
  color: #24107c;
}

.lead-form .btn {
  width: 100%;
  margin-top: 4px;
}

.lead-form .btn[disabled] {
  opacity: .65;
  cursor: wait;
}

.form-status {
  min-height: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.lead-thanks {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(109,77,247,0.14);
  border-radius: 24px;
  background: rgba(109,77,247,0.08);
}

.lead-thanks strong {
  display: block;
  font-size: 28px;
  letter-spacing: -0.045em;
}

.feedback-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.feedback-form label {
  display: grid;
  gap: 10px;
  color: rgba(17,17,17,0.74);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}

.feedback-form .btn {
  width: 100%;
}

.feedback-form .btn[disabled] {
  opacity: .65;
  cursor: wait;
}

.feedback-status {
  min-height: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.feedback-status:not(:empty) {
  position: relative;
  min-height: 0;
  margin-top: 18px;
  padding: 18px 18px 18px 54px;
  border: 1px solid rgba(47, 158, 113, 0.22);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(47, 158, 113, 0.13), rgba(109, 77, 247, 0.08));
  color: rgba(17,17,17,0.78);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(47, 158, 113, 0.12);
}

.feedback-status:not(:empty)::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2f9e71;
  transform: translateY(-50%);
  box-shadow: 0 0 0 7px rgba(47, 158, 113, 0.12);
}

.feedback-status:not(:empty)::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-65%) rotate(-45deg);
}

.footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 36px 24px 56px;
  color: var(--muted);
}

.footer p {
  max-width: 320px;
  margin-top: 14px;
  line-height: 1.5;
}

.legal-header {
  position: relative;
  top: auto;
}

.legal-home-button {
  min-height: 44px;
  padding: 0 16px;
}

.legal-page {
  max-width: 1060px;
  margin: 0 auto;
}

.legal-document {
  padding: 54px;
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 36px;
  background: rgba(255,255,255,0.84);
  box-shadow: var(--shadow-soft);
}

.legal-document-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.legal-document-top .eyebrow {
  margin: 0;
  text-align: right;
}

.legal-back {
  display: inline-flex;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.legal-document h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: 36px;
}

.legal-lead {
  max-width: 900px;
  margin: 0 0 38px;
  color: rgba(17,17,17,0.72);
  font-size: 19px;
  line-height: 1.65;
}

.legal-document section {
  padding: 10px 0;
  border-top: 1px solid rgba(17,17,17,0.08);
}

.legal-document h2 {
  margin-bottom: 16px;
  font-size: clamp(22px, 2.5vw, 30px);
}

.legal-document p,
.legal-document li {
  color: rgba(17,17,17,0.72);
  font-size: 16px;
  line-height: 1.75;
}

.legal-document p {
  margin: 0 0 14px;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding-left: 22px;
  list-style: disc;
}

.legal-document a {
  color: var(--text);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-links,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-content: start;
  font-size: 14px;
  font-weight: 800;
}

.legal-links {
  justify-content: flex-end;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: calc(100% - 48px);
  padding: 12px 12px 12px 16px;
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 22px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 54px rgba(17,17,17,0.14);
}

.cookie-copy {
  max-width: 390px;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-copy strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.cookie-copy p {
  margin: 0;
  color: rgba(17,17,17,0.68);
  font-size: 13px;
  line-height: 1.42;
}

.cookie-copy a,
.cookie-link {
  color: var(--text);
  font-weight: 900;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-link {
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

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

@keyframes dashMove {
  to { stroke-dashoffset: -36; }
}

@keyframes pathDash {
  to { background-position: 0 18px; }
}

@keyframes pathDashX {
  to { background-position: 18px 0; }
}

@keyframes layerSweep {
  0%, 45% { transform: translateX(-120%); }
  78%, 100% { transform: translateX(120%); }
}

@keyframes providerSignal {
  0% { left: 0; opacity: 0; }
  18% { opacity: 1; }
  74% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

@keyframes pulse {
  0%, 100% { opacity: .7; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,192,100,0.38); }
  70% { box-shadow: 0 0 0 12px rgba(37,192,100,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,192,100,0); }
}

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

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes signalFlow {
  0% { top: 0; opacity: 0; transform: translate(-50%, -50%) scale(.65); }
  18% { opacity: 1; }
  72% { opacity: 1; }
  100% { top: 100%; opacity: 0; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes howSignal {
  0% { left: 0; opacity: 0; transform: translateY(-50%) scale(.65); }
  16% { opacity: 1; }
  76% { opacity: 1; }
  100% { left: 100%; opacity: 0; transform: translateY(-50%) scale(1.1); }
}

@keyframes glowBreath {
  0%, 100% { opacity: .45; transform: translate(-50%, -50%) scale(.95); }
  50% { opacity: .95; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes phoneFloat {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-1deg) translateY(-12px); }
}

@keyframes phoneChatScroll {
  0%, 10% { transform: translateY(30px); }
  30%, 42% { transform: translateY(-76px); }
  58%, 70% { transform: translateY(-202px); }
  88%, 100% { transform: translateY(-348px); }
}

@keyframes phoneChatScrollMobile {
  0%, 10% { transform: translateY(22px); }
  32%, 44% { transform: translateY(-100px); }
  62%, 74% { transform: translateY(-244px); }
  88%, 100% { transform: translateY(-410px); }
}

@keyframes thinkingDot {
  0%, 100% { opacity: .35; transform: translateY(0); }
  45% { opacity: 1; transform: translateY(-4px); }
}

@keyframes livePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.72); opacity: .68; }
}

@media (max-width: 1200px) {
  .site-header {
    margin-inline: 16px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    padding: 36px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 34px;
  }

  .hero-center {
    align-items: center;
    width: min(100%, 820px);
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-phone {
    width: min(100%, 360px);
  }

  .hero-side,
  .result-stack {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

  .flow-line {
    display: none;
  }

  .provider-stack.compact {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .result-stack .side-label {
    grid-column: 1 / -1;
  }

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

  .call-panel,
  .summary-panel {
    grid-column: 1 / -1;
  }

  .split-layout,
  .split-layout.reverse,
  .feature-call,
  .metrics-layout,
  .knowledge-flow,
  .knowledge-console,
  .knowledge-layout {
    grid-template-columns: 1fr;
  }

  .metrics-layout {
    max-width: 900px;
    margin: 0 auto;
  }

  .metrics-copy {
    order: -1;
  }

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

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

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    max-width: calc(100% - 28px);
    margin-top: 14px;
    padding: 12px;
    border-radius: 28px;
  }

  .header-menu {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 92px;
    z-index: 49;
    display: none;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(109,77,247,0.12);
    border-radius: 30px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(24px);
    box-shadow: 0 28px 90px rgba(17,17,17,0.14);
  }

  .nav {
    justify-self: stretch;
    display: grid;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border: 1px solid rgba(17,17,17,0.06);
    border-radius: 20px;
    background: rgba(248,246,241,0.72);
    font-size: 16px;
    color: var(--text);
  }

  .site-header.is-open .nav a::after {
    content: "↗";
    color: var(--accent-purple);
    font-size: 14px;
  }

  .header-actions {
    justify-self: stretch;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    padding-top: 4px;
  }

  .site-header.is-open .header-menu,
  .menu-toggle {
    display: grid;
  }

  .menu-toggle {
    display: grid;
  }

  .site-header.is-open .menu-toggle-icon span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle-icon span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .header-actions .btn,
  .login-link {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  .login-link {
    border: 1px solid rgba(17,17,17,0.06);
    background: rgba(255,255,255,0.72);
  }

  .section-pad {
    padding: 58px 18px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-shell {
    border-radius: 32px;
    padding: 28px 18px;
  }

  .provider-stack.compact,
  .result-stack,
  .dashboard-grid,
  .metrics-cards,
  .pricing-grid,
  .efficiency-grid,
  .triple-grid,
  .scenario-grid,
  .compare-interactive,
  .timeline,
  .provider-grid,
  .usecase-grid,
  .process-grid,
  .summary-fields {
    grid-template-columns: 1fr;
  }

  .hero-telephony,
  .result-stack {
    display: none;
  }

  .hero-shell {
    min-height: auto;
  }

  .dashboard-mock {
    overflow: hidden;
  }

  .dashboard-grid {
    min-width: 0;
  }

  .center-orb {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .center-orb small {
    justify-self: start;
    text-align: left;
  }

  .layered-visual {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    padding: 18px;
  }

  .connection-node,
  .ai-node {
    grid-template-columns: 1fr;
    min-height: auto;
    align-items: flex-start;
    padding: 22px;
    text-align: left;
  }

  .connection-node strong,
  .connection-node .layer-kicker,
  .layer-index {
    grid-column: 1;
    grid-row: auto;
  }

  .mini-provider-row,
  .layer-feature-grid,
  .outcome-pills {
    grid-column: 1;
    grid-row: auto;
    justify-content: flex-start;
    max-width: 100%;
    margin-top: 14px;
  }

  .connection-path,
  .connection-glow {
    display: none;
  }

  .compare-bridge {
    display: none;
  }

  .compare-card {
    min-height: auto;
    padding: 24px;
  }

  .how-flow {
    grid-template-columns: 1fr;
    padding: 14px;
    border-radius: 30px;
  }

  .how-flow-line {
    left: 36px;
    right: auto;
    top: 24px;
    bottom: 24px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(109,77,247,0.34), transparent);
  }

  .how-flow-line::before {
    background-image: linear-gradient(180deg, rgba(109,77,247,0.42) 50%, transparent 50%);
    background-size: 2px 18px;
    animation: pathDash 1.4s linear infinite;
  }

  .how-flow-line span {
    left: 50%;
    animation-name: signalFlow;
  }

  .how-step {
    min-height: auto;
    padding: 22px 22px 22px 72px;
  }

  .how-step svg,
  .how-step .brand-mark,
  .how-step .nalto-mark {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    margin-top: 18px;
  }

  .step-number {
    position: absolute;
    left: 16px;
    top: 22px;
    width: 42px;
  }

  .compare-mini-flow {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .compare-mini-flow i {
    width: 2px;
    height: 18px;
    margin: 0 auto;
  }

  .timeline article::after {
    display: none;
  }

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

  .role-panel {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 26px;
  }

  .role-panel .mini-list {
    margin-top: 0;
  }

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

  .legal-links {
    justify-content: flex-start;
  }

  .cookie-banner {
    align-items: center;
  }

  .cookie-actions {
    justify-content: flex-end;
  }

  .legal-document {
    padding: 38px 28px;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 96px;
  }

  .section[id] {
    scroll-margin-top: 96px;
  }

  .site-header {
    top: 10px;
    margin-top: 12px;
    padding: 12px;
    border-radius: 22px;
  }

  .header-menu {
    top: 82px;
  }

  .brand {
    font-size: 26px;
    padding: 0;
  }

  .brand-wordmark small {
    font-size: 10px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
    border-radius: 22px;
    justify-content: space-between;
  }

  .cookie-actions {
    display: flex;
    gap: 10px;
  }

  .cookie-actions .btn {
    width: auto;
  }

  .cookie-link {
    text-align: center;
  }

  .legal-document {
    padding: 30px 20px;
    border-radius: 26px;
  }

  .legal-document-top {
    display: grid;
    gap: 10px;
  }

  .legal-document-top .eyebrow {
    text-align: left;
  }

  .legal-lead {
    font-size: 16px;
  }

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

  h1 {
    font-size: 40px;
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  h2 {
    font-size: 28px;
  }

  .hero-copy,
  .section-heading p,
  .section-copy p,
  .cta-inner p {
    font-size: 16px;
  }

  .hero {
    padding-inline: 10px;
  }

  .hero-shell {
    padding: 34px 22px;
  }

  .leader-dashboard {
    min-height: auto;
    padding: 20px;
    border-radius: 28px;
  }

  .leader-dashboard-top {
    display: grid;
  }

  .leader-dashboard-top > strong {
    justify-self: start;
    font-size: 32px;
  }

  .score-ring {
    width: 150px;
    height: 150px;
    margin: 28px auto 22px;
  }

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

  .attention-grid div {
    min-height: auto;
  }

  .metrics-cards article {
    min-height: auto;
    padding: 18px;
    border-radius: 22px;
  }

  .metrics-copy p {
    font-size: 16px;
  }

  .hero-layout {
    gap: 28px;
  }

  .phone-frame {
    border-radius: 26px;
    transform: none;
    animation: none;
  }

  .phone-screen {
    height: 520px;
    border-radius: 21px;
  }

  .phone-chat-window {
    top: 152px;
    border-radius: 17px;
  }

  .phone-chat-track {
    animation-name: phoneChatScrollMobile;
  }

  .chat-bubble {
    width: 92%;
  }

  .chat-bubble p {
    font-size: 12px;
  }

  .hero-shell::after {
    display: none;
  }

  .role-switcher {
    padding: 12px;
    border-radius: 28px;
  }

  .knowledge-brief,
  .moment-workspace {
    padding: 22px;
    border-radius: 26px;
  }

  .moment-card {
    grid-template-columns: 30px 1fr;
    padding: 12px;
  }

  .moment-card small {
    width: 30px;
    height: 30px;
  }

  .role-tabs {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .knowledge-tabs {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .live-scenario-tabs {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .role-tab,
  .knowledge-tab,
  .live-scenario-tab {
    min-height: 44px;
    border-radius: 18px;
  }

  .role-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .role-panel h3 {
    font-size: 30px;
  }

  .role-panel p {
    font-size: 16px;
  }

  .role-panel .call-table div {
    grid-template-columns: 1fr;
  }

  .knowledge-source,
  .knowledge-demo,
  .knowledge-panel {
    padding: 22px;
  }

  .knowledge-source {
    min-height: auto;
  }

  .knowledge-panel {
    min-height: auto;
  }

  .knowledge-panel p {
    font-size: 17px;
  }

  .hero-center {
    width: 100%;
  }

  .hero-copy {
    max-width: 100%;
    margin-top: 20px;
    line-height: 1.5;
  }

  .microcopy {
    line-height: 1.45;
  }

  .ai-layer-card {
    margin-top: 34px;
    padding: 24px 16px;
    border-radius: 24px;
    overflow: visible;
  }

  .layer-glow {
    inset: 16px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(109,77,247,0.13), transparent 68%);
    filter: blur(18px);
  }

  .layer-head {
    align-items: center;
    font-size: 20px;
  }

  .layer-tags {
    display: grid;
    justify-items: center;
    gap: 12px;
    margin-top: 22px;
  }

  .layer-tags span {
    max-width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .flow-line {
    display: none !important;
  }

  .dash-topbar {
    min-height: auto;
    padding: 12px 10px 14px;
    gap: 8px;
    font-size: 11px;
  }

  .dash-topbar > span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dashboard-mock {
    padding: 10px;
    border-radius: 26px;
  }

  .dashboard-grid {
    gap: 10px;
  }

  .dash-card {
    padding: 18px;
    border-radius: 22px;
  }

  .transcript-panel,
  .hints-panel {
    min-height: auto;
  }

  .call-timer {
    margin-top: 20px;
    font-size: 28px;
  }

  .meta-list {
    margin-top: 20px;
  }

  .ai-hint-live {
    padding: 18px;
  }

  .lead-modal {
    padding: 10px;
  }

  .lead-modal-panel {
    max-height: calc(100vh - 20px);
    border-radius: 26px;
  }

  .lead-modal-content {
    padding: 28px 18px 20px;
  }

  .lead-modal h2 {
    padding-right: 42px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .doc-list {
    grid-template-columns: 1fr;
  }

  .call-table div {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    min-height: 500px;
    border-radius: 32px;
  }
}

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