/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/app/landing.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
/* ===================================================================
   Kiron OS — Landing Page Styles
   Source of truth: surface benchmark 2026-03
   All colors via --os-* tokens.
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&display=swap');

html {
  scroll-behavior: smooth;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-family: 'Material Symbols Outlined', sans-serif;
  font-style: normal;
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}

/* === ANIMATIONS === */
@keyframes ring-ping {
  0% { transform: scale(1); opacity: 0.6; }
  75%, 100% { transform: scale(2); opacity: 0; }
}

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

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

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

/* === NAV === */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky, 20);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-8, 32px);
  height: 84px;
  background: rgba(5, 7, 12, 0.8);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 240ms ease;
}

.landing-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--os-accent, #ff7538);
  text-decoration: none;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
}

.landing-nav-isologo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(140, 82, 255, 0.8)) drop-shadow(0 0 16px rgba(140, 82, 255, 0.4));
  animation: isologo-glow 3s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes isologo-glow {
  0%, 100% {
    filter: drop-shadow(0 0 6px rgba(140, 82, 255, 0.7)) drop-shadow(0 0 14px rgba(140, 82, 255, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(140, 82, 255, 1)) drop-shadow(0 0 24px rgba(140, 82, 255, 0.6));
  }
}

.landing-nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8, 32px);
}

.landing-nav-panel {
  display: flex;
  align-items: center;
  gap: var(--space-6, 24px);
}

.landing-nav-link {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(244, 247, 251, 0.55);
  text-decoration: none;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  transition: color 200ms ease;
}

.landing-nav-link:hover {
  color: var(--os-text, #f4f7fb);
}

.landing-nav-link--active {
  color: var(--os-accent, #ff7538);
  border-bottom: 2px solid var(--os-accent, #ff7538);
  padding-bottom: 2px;
}

.landing-nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3, 12px);
  flex-shrink: 0;
}

.landing-nav-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--os-text, #f4f7fb);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.landing-nav-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.landing-nav-menu-toggle .material-symbols-outlined {
  font-size: 20px;
}

.landing-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: var(--radius-full, 9999px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--os-text, #f4f7fb);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 200ms ease;
}

.landing-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}

.landing-btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border-radius: var(--radius-full, 9999px);
  border: none;
  background: var(--os-accent, #ff7538);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 117, 56, 0.2);
  transition: transform 200ms ease, box-shadow 200ms ease;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
}

.landing-btn-accent:hover {
  transform: scale(1.05);
}

.landing-btn-accent:active {
  transform: scale(0.97);
}

.landing-btn-accent-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2, 8px);
  padding: 14px 32px;
  border-radius: var(--radius-full, 9999px);
  border: none;
  background: var(--os-accent, #ff7538);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255, 117, 56, 0.4);
  transition: box-shadow 200ms ease, transform 200ms ease;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
}

.landing-btn-accent-lg:hover {
  box-shadow: 0 0 35px rgba(255, 117, 56, 0.6);
}

.landing-btn-accent-lg:active {
  transform: scale(0.97);
}

.landing-btn-accent-lg--hero {
  font-size: 1.25rem;
  padding: 18px 48px;
  box-shadow: 0 0 32px rgba(255, 117, 56, 0.4);
}

.landing-btn-ghost-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2, 8px);
  padding: 13px 30px;
  border-radius: var(--radius-full, 9999px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--os-text, #f4f7fb);
  font-size: 1.125rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background 200ms ease;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
}

.landing-btn-ghost-lg:hover {
  background: rgba(255, 255, 255, 0.1);
}

.landing-btn-ghost-lg:active {
  transform: scale(0.97);
}

.landing-btn-arrow {
  font-size: 20px;
  transition: transform 200ms ease;
}

.landing-btn-ghost-lg:hover .landing-btn-arrow {
  transform: translateX(4px);
}

/* === HERO TWO-COL === */
.landing-hero {
  background: var(--os-bg, #05070c);
  overflow: clip;
}

.landing-hero-two-col {
  position: relative;
  min-height: 100vh;
  padding-top: 84px;
  display: flex;
  align-items: center;
  overflow: clip;
}

/* Hero ambient background video — muted loop, heavy overlay keeps text legible */
.landing-hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  .landing-hero-bg-video {
    display: none;
  }
}

.landing-hero-dot-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 117, 56, 0.1) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 1;
}

.landing-hero-gradient-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, var(--os-bg, #05070c), transparent, var(--os-bg, #05070c));
  z-index: 2;
}

.landing-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-8, 32px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--space-12, 48px);
  gap: var(--space-12, 48px);
  align-items: center;
}

.landing-hero-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-8, 32px);
}

.landing-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2, 8px);
  padding: 4px 12px;
  border-radius: var(--radius-full, 9999px);
  border: 1px solid rgba(255, 117, 56, 0.2);
  background: rgba(255, 117, 56, 0.1);
  color: var(--os-accent, #ff7538);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
}

.landing-hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--os-accent, #ff7538);
  animation: ring-ping 1.5s ease-in-out infinite;
}

.landing-hero-left h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--os-text, #f4f7fb);
  margin: 0;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
}

.landing-hero-accent {
  color: var(--os-accent, #ff7538);
  text-decoration: underline;
  -webkit-text-decoration-color: rgba(255, 117, 56, 0.3);
          text-decoration-color: rgba(255, 117, 56, 0.3);
  text-underline-offset: 8px;
}

.landing-hero-phrase {
  display: inline-block;
  transition: opacity 0.35s ease;
}

.landing-hero-br {
  display: block;
}

.landing-hero-sub {
  font-size: 1.25rem;
  color: rgba(147, 164, 188, 1);
  max-width: 560px;
  line-height: 1.6;
  margin: 0;
}

.landing-hero-ctas {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-4, 16px);
  flex-wrap: wrap;
}

/* === COBI AI Graph / Orb === */
.landing-hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.landing-hero-orb-wrap {
  position: relative;
  width: 320px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-hero-orb {
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--os-accent, #ff7538), var(--os-core, #ffd166));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: glow-pulse 4s ease-in-out infinite;
  flex-shrink: 0;
}

.landing-hero-orb-ring1 {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 117, 56, 0.4);
  animation: ring-ping 3s ease-in-out infinite;
}

.landing-hero-orb-ring2 {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 117, 56, 0.2);
  animation: ring-ping 5s ease-in-out infinite;
}

.landing-hero-orb-icon {
  color: #fff;
  font-size: 64px !important;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.landing-hero-orb-isologo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 16px rgba(255,255,255,0.9)) drop-shadow(0 0 32px rgba(255,255,255,0.5));
  position: relative;
  z-index: 1;
  animation: orb-mark-glow 4s ease-in-out infinite;
}

@keyframes orb-mark-glow {
  0%, 100% {
    filter: brightness(0) invert(1) drop-shadow(0 0 14px rgba(255,255,255,0.8)) drop-shadow(0 0 28px rgba(255,255,255,0.4));
  }
  50% {
    filter: brightness(0) invert(1) drop-shadow(0 0 22px rgba(255,255,255,1)) drop-shadow(0 0 44px rgba(255,200,150,0.6));
  }
}

/* === FLOATING CHIPS === */
.landing-hero-chip {
  position: absolute;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(17, 24, 31, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.landing-hero-chip--top-left {
  top: 20px;
  left: 0;
  animation: chip-float-a 4s ease-in-out infinite;
}

.landing-hero-chip--bottom-right {
  bottom: 20px;
  right: -20px;
  animation: chip-float-b 5s ease-in-out infinite;
  animation-delay: 1s;
}

.landing-hero-chip--mid-right {
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  animation: chip-float-c 6s ease-in-out infinite;
  animation-delay: 2s;
}

.landing-chip-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px !important;
  flex-shrink: 0;
}

.landing-chip-icon--ok {
  background: rgba(52, 211, 153, 0.2);
  color: var(--os-ok, #34d399);
}

.landing-chip-icon--info {
  background: rgba(76, 201, 240, 0.2);
  color: var(--os-info, #4cc9f0);
}

.landing-chip-icon--warn {
  background: rgba(255, 159, 67, 0.2);
  color: var(--os-warn, #ff9f43);
}

.landing-chip-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(147, 164, 188, 1);
}

.landing-chip-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--os-text, #f4f7fb);
  font-family: var(--font-heading, 'Montserrat', sans-serif);
}

/* === COUNTER STRIP === */
.landing-counter-strip {
  padding: 80px var(--space-8, 32px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(13, 18, 28, 0.3);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--space-12, 48px);
  gap: var(--space-12, 48px);
  max-width: 1280px;
  margin: 0 auto;
}

.landing-counter-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-2, 8px);
}

.landing-counter-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--os-text, #f4f7fb);
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "tnum";
}

.landing-counter-num--ok {
  color: var(--os-ok, #34d399);
}

.landing-counter-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(147, 164, 188, 1);
}

/* === SECTION LAYOUT === */
.landing-section {
  padding: 96px var(--space-8, 32px);
  max-width: 1280px;
  margin: 0 auto;
}

.landing-section-full {
  padding: 80px var(--space-8, 32px);
  background: rgba(13, 18, 28, 0.2);
}

.landing-section-header {
  margin-bottom: var(--space-16, 64px);
}

.landing-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--os-accent, #ff7538);
  margin-bottom: var(--space-3, 12px);
}

.landing-section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--os-text, #f4f7fb);
  margin: 0 0 var(--space-4, 16px);
  font-family: var(--font-heading, 'Montserrat', sans-serif);
}

.landing-section-sub {
  font-size: 1rem;
  color: rgba(147, 164, 188, 1);
  max-width: 640px;
  line-height: 1.6;
  margin: 0;
}

/* === INDUSTRIES GRID === */
.landing-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--space-6, 24px);
  gap: var(--space-6, 24px);
  margin-top: var(--space-10, 40px);
}

.landing-industry-card {
  padding: var(--space-8, 32px);
  border-radius: 16px;
  background: rgba(13, 18, 28, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: var(--space-3, 12px);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 220ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.landing-industry-card:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.landing-industry-card--pulse:hover { border-color: rgba(255, 117, 56, 0.3); }
.landing-industry-card--edge:hover  { border-color: rgba(76, 201, 240, 0.3); }
.landing-industry-card--danger:hover{ border-color: rgba(251, 113, 133, 0.3); }
.landing-industry-card--pink:hover  { border-color: rgba(236, 72, 153, 0.3); }
.landing-industry-card--warn:hover  { border-color: rgba(255, 159, 67, 0.3); }
.landing-industry-card--blue:hover  { border-color: rgba(59, 130, 246, 0.3); }
.landing-industry-card--ok:hover    { border-color: rgba(52, 211, 153, 0.3); }
.landing-industry-card--purple:hover{ border-color: rgba(168, 85, 247, 0.3); }
.landing-industry-card--lime:hover  { border-color: rgba(163, 230, 53, 0.3); }

.landing-industry-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: var(--space-2, 8px);
}

.landing-industry-icon-wrap--pulse  { background: rgba(255, 117, 56, 0.1);  color: var(--os-accent, #ff7538); }
.landing-industry-icon-wrap--edge   { background: rgba(76, 201, 240, 0.1);  color: var(--os-info, #4cc9f0); }
.landing-industry-icon-wrap--danger { background: rgba(251, 113, 133, 0.1); color: var(--os-danger, #fb7185); }
.landing-industry-icon-wrap--pink   { background: rgba(236, 72, 153, 0.1);  color: #ec4899; }
.landing-industry-icon-wrap--warn   { background: rgba(255, 159, 67, 0.1);  color: var(--os-warn, #ff9f43); }
.landing-industry-icon-wrap--blue   { background: rgba(59, 130, 246, 0.1);  color: #3b82f6; }
.landing-industry-icon-wrap--ok     { background: rgba(52, 211, 153, 0.1);  color: var(--os-ok, #34d399); }
.landing-industry-icon-wrap--purple { background: rgba(168, 85, 247, 0.1);  color: #a855f7; }
.landing-industry-icon-wrap--lime   { background: rgba(163, 230, 53, 0.1);  color: #a3e635; }

.landing-industry-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--os-text, #f4f7fb);
  margin: 0;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
}

.landing-industry-desc {
  font-size: 0.875rem;
  color: rgba(147, 164, 188, 1);
  line-height: 1.55;
  margin: 0;
}

/* === TESTIMONIALS === */
.landing-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 24px;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.landing-testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 24px 22px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.22s, transform 0.22s;
}
.landing-testimonial-card:hover {
  border-color: rgba(255, 117, 56, 0.22);
  transform: translateY(-2px);
}
.landing-testimonial-card::before {
  content: '';
  position: absolute; top: 0; left: 16px; right: 16px; height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--os-accent, #ff7538), #ffd166, #4cc9f0);
  opacity: 0;
  transition: opacity 0.22s;
}
.landing-testimonial-card:hover::before { opacity: 1; }

.landing-testimonial-quote {
  font-size: 0.95rem;
  color: rgba(200, 220, 255, 0.88);
  line-height: 1.7;
  margin: 0 0 20px;
  font-style: italic;
}

.landing-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.landing-testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 117, 56, 0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.landing-testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--os-text, #f4f7fb);
}

.landing-testimonial-meta {
  font-size: 0.8rem;
  color: rgba(147, 164, 188, 0.8);
}

.landing-testimonial-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--os-accent, #ff7538);
  background: rgba(255, 117, 56, 0.1);
  border: 1px solid rgba(255, 117, 56, 0.2);
  border-radius: 100px;
  padding: 3px 10px;
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
}

/* === FEATURE TABS === */
.landing-feature-section {
  background: rgba(13, 18, 28, 0.2);
}

.landing-feature-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-12, 48px);
  overflow-x: auto;
  scrollbar-width: none;
}

.landing-feature-tabs::-webkit-scrollbar {
  display: none;
}

.landing-tab-btn {
  padding: 14px 28px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(147, 164, 188, 1);
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  cursor: pointer;
  white-space: nowrap;
  transition: color 200ms ease, border-color 200ms ease;
  margin-bottom: -1px;
}

.landing-tab-btn:hover {
  color: var(--os-text, #f4f7fb);
}

.landing-tab-btn--active {
  color: var(--os-accent, #ff7538);
  border-bottom-color: var(--os-accent, #ff7538);
}

.landing-feature-panel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(17, 24, 31, 1);
  aspect-ratio: 16/10;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.landing-feature-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 117, 56, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.landing-feature-panel-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(5, 7, 12, 0.9) 0%, transparent 100%);
  pointer-events: none;
}

.landing-feature-panel-body {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: var(--space-12, 48px);
}

.landing-feature-panel-text {
  max-width: 440px;
}

.landing-feature-panel-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--os-text, #f4f7fb);
  margin-bottom: var(--space-3, 12px);
  font-family: var(--font-heading, 'Montserrat', sans-serif);
}

.landing-feature-panel-desc {
  font-size: 1rem;
  color: rgba(147, 164, 188, 1);
  line-height: 1.6;
  margin: 0;
}

.landing-feature-panel-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(5, 7, 12, 0.9);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  animation: chip-float-a 3s ease-in-out infinite;
  align-self: flex-end;
}

.landing-feature-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.2);
  color: var(--os-ok, #34d399);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px !important;
}

.landing-feature-badge-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(147, 164, 188, 1);
}

.landing-feature-badge-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--os-text, #f4f7fb);
  font-family: var(--font-heading, 'Montserrat', sans-serif);
}

/* === SIGNUP CTA === */
.landing-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 96px var(--space-8, 32px);
  background: var(--os-bg, #05070c);
}

.landing-cta--gradient {
  background: transparent;
}

.landing-cta--gradient .landing-cta-inner {
  background: linear-gradient(135deg, rgba(255, 117, 56, 0.2) 0%, transparent 70%);
  border-radius: 48px;
  border: 1px solid rgba(255, 117, 56, 0.2);
  padding: 80px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.landing-cta-glow-corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 256px;
  height: 256px;
  background: rgba(255, 117, 56, 0.1);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.landing-cta-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(255, 117, 56, 0.1) 0%, transparent 70%);
}

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

.landing-cta h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--os-text, #f4f7fb);
  margin: 0 0 var(--space-4, 16px);
  font-family: var(--font-heading, 'Montserrat', sans-serif);
}

.landing-cta-sub {
  font-size: 1.25rem;
  color: rgba(147, 164, 188, 1);
  line-height: 1.6;
  margin: 0 0 var(--space-10, 40px);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.landing-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4, 16px);
  flex-wrap: wrap;
  padding-top: var(--space-8, 32px);
}

/* === FOOTER === */
.landing-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 4, 8, 1);
  padding: var(--space-12, 48px) var(--space-12, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6, 24px);
}

.landing-footer--row {
  flex-direction: row;
  justify-content: space-between;
}

.landing-footer-brand {
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(240, 244, 255, 0.9);
  text-decoration: none;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
}

.landing-footer-links {
  display: flex;
  align-items: center;
  gap: var(--space-8, 32px);
  flex-wrap: wrap;
  justify-content: center;
}

.landing-footer-link {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(100, 116, 139, 1);
  text-decoration: none;
  transition: color 200ms ease;
}

.landing-footer-link:hover {
  color: rgba(240, 244, 255, 0.9);
}

.landing-footer-copy {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(100, 116, 139, 1);
  text-align: center;
  margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .landing-hero-content {
    grid-template-columns: 1fr;
  }
  /* Tablet: show graph below the copy at a scaled-down size.
     We use a container with the scaled visual height to collapse
     the excess layout space that CSS transform leaves behind. */
  .landing-hero-right {
    display: flex;
    justify-content: center;
    /* Constrain layout height to the visual post-scale height */
    height: 490px;
    overflow: hidden;
    padding-bottom: 0;
  }
  .landing-hero-graph-wrap {
    transform-origin: top center;
    transform: scale(0.72);
    /* transform does not change layout box — keep 680px layout,
       overflow:hidden on .landing-hero-right clips the rest */
    margin: 0;
  }
  .landing-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: hide graph entirely below 640px — canvas too dense at small sizes */
@media (max-width: 640px) {
  .landing-hero-right {
    display: none;
  }
}

@media (max-width: 640px) {
  .landing-nav {
    padding: 0 var(--space-4, 16px);
    height: 64px;
    gap: 12px;
  }
  .landing-nav-panel {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(8, 12, 22, 0.94);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  }
  .landing-nav--menu-open .landing-nav-panel {
    display: flex;
  }
  .landing-nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .landing-nav-link {
    padding: 12px 10px;
    border-radius: 12px;
  }
  .landing-nav-link:hover {
    background: rgba(255, 255, 255, 0.04);
  }
  .landing-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .landing-nav-actions .landing-btn-ghost,
  .landing-nav-actions .landing-btn-accent {
    width: 100%;
  }
  .landing-nav-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .landing-hero-content {
    padding: 0 var(--space-4, 16px);
  }
  .landing-section {
    padding: 64px var(--space-4, 16px);
  }
  .landing-counter-strip {
    grid-template-columns: 1fr;
    gap: var(--space-8, 32px);
    padding: 56px var(--space-4, 16px);
  }
  .landing-industries-grid {
    grid-template-columns: 1fr;
  }
  .landing-cta--gradient .landing-cta-inner {
    padding: 48px var(--space-4, 16px);
  }
  .landing-footer--row {
    flex-direction: column;
    align-items: center;
  }
  .landing-feature-panel-body {
    padding: var(--space-6, 24px);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4, 16px);
  }
  .landing-feature-panel-badge {
    display: none;
  }
}

/* ===================================================================
   Pricing Section — Stitch benchmark
   =================================================================== */

.landing-pricing {
  padding: 80px var(--space-8, 32px);
  max-width: 960px;
  margin: 0 auto;
}

.landing-pricing-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.landing-pricing-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--os-muted, #94a3b8);
  text-transform: uppercase;
}

.landing-pricing-title {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--os-text, #f1f5f9);
  margin: 0;
  line-height: 1.1;
}

.landing-pricing-sub {
  font-size: 1rem;
  color: var(--os-muted, #94a3b8);
  margin: 4px 0 32px;
}

.landing-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 24px;
  gap: 24px;
  width: 100%;
  padding-top: 16px;
  overflow: visible;
}

@media (max-width: 640px) {
  .landing-pricing-grid { grid-template-columns: 1fr; }
}

/* Card wrapper — holds badge outside overflow boundary + equal height */
.landing-pricing-card-wrap {
  position: relative;
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  transition: transform 420ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.landing-pricing-card-wrap:hover {
  transform: translateY(-8px) scale(1.025);
}
.landing-pricing-card-wrap:has(.landing-pricing-card--highlight):hover {
  transform: translateY(-10px) scale(1.035);
}

.landing-pricing-card {
  position: relative;
  overflow: hidden;
  background: var(--os-surface, #0d121c);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1 1;
  gap: 16px;
  transition: border-color 280ms ease, transform 280ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 280ms ease;
}

.landing-pricing-card-wrap:hover .landing-pricing-card {
  border-color: rgba(255, 255, 255, 0.14);
}

.landing-pricing-card--highlight {
  background: rgba(180, 60, 20, 0.18);
  border-color: rgba(255, 117, 56, 0.3);
}

.landing-pricing-card-wrap:hover .landing-pricing-card--highlight {
  border-color: rgba(255, 117, 56, 0.5);
}

.landing-pricing-badge {
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff7538, #ef4444);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 20px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 5;
  box-shadow: 0 4px 16px rgba(255,117,56,0.4), 0 0 0 3px rgba(255,117,56,0.12);
  font-family: var(--font-heading, 'Montserrat', sans-serif);
}

.landing-pricing-plan-name {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--os-muted, #94a3b8);
  text-transform: uppercase;
}

.landing-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.landing-pricing-amount {
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--os-text, #f1f5f9);
  font-feature-settings: "tnum" 1;
  letter-spacing: -0.03em;
}

.landing-pricing-period {
  font-size: 1rem;
  color: var(--os-muted, #94a3b8);
}

.landing-pricing-desc {
  font-size: 0.9375rem;
  color: var(--os-muted, #94a3b8);
  line-height: 1.5;
  margin: 0;
}

.landing-pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1;
}

.landing-pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--os-text-muted, #cbd5e1);
}

.landing-pricing-check {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--os-ok, #34d399);
  flex-shrink: 0;
}

.landing-pricing-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(200,220,255,0.55);
}
.landing-pricing-icon-wrap .material-symbols-outlined {
  font-size: 14px;
}
.landing-pricing-icon-wrap--highlight {
  background: rgba(255,117,56,0.1);
  border-color: rgba(255,117,56,0.2);
  color: #ff7538;
}

.landing-pricing-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--os-text, #f1f5f9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 150ms ease, border-color 150ms ease;
  margin-top: 8px;
}

.landing-pricing-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.landing-pricing-cta--highlight {
  background: rgba(255, 117, 56, 0.15);
  border-color: rgba(255, 117, 56, 0.35);
  color: var(--os-accent, #ff7538);
}

.landing-pricing-cta--highlight:hover {
  background: rgba(255, 117, 56, 0.25);
  border-color: rgba(255, 117, 56, 0.55);
}

.landing-pricing-link-row {
  width: 100%;
  text-align: center;
  padding-top: 8px;
}

.landing-pricing-compare-link {
  font-size: 0.9375rem;
  color: var(--os-muted, #94a3b8);
  text-decoration: none;
  transition: color 150ms ease;
}

.landing-pricing-compare-link:hover {
  color: var(--os-text, #f1f5f9);
}

/* ===================================================================
   Scroll-triggered fade-in
   =================================================================== */

.landing-fadein {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.landing-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.landing-fadein--delay-1 { transition-delay: 0.1s; }
.landing-fadein--delay-2 { transition-delay: 0.2s; }
.landing-fadein--delay-3 { transition-delay: 0.3s; }

/* ===================================================================
   Canvas Extract: Operational UI Patterns
   =================================================================== */

/* Operational mono text */
.landing-op-text {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--os-accent, #ff7538);
  font-weight: 500;
}

/* Heartbeat dot */
.landing-heartbeat {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hb-color, var(--os-ok, #34d399));
  flex-shrink: 0;
  animation: heartbeat-pulse 1.4s ease-in-out infinite;
}

@keyframes heartbeat-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
  50%       { transform: scale(1.4); box-shadow: 0 0 0 4px rgba(52, 211, 153, 0); }
}

/* Scan line on feature panel */
.landing-feature-panel::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 117, 56, 0.55) 50%, transparent 100%);
  animation: panel-scan 5s linear infinite;
  pointer-events: none;
  z-index: 10;
}

@keyframes panel-scan {
  0%   { top: -2px;          opacity: 0; }
  4%   {                     opacity: 1; }
  96%  {                     opacity: 1; }
  100% { top: calc(100% + 2px); opacity: 0; }
}

@keyframes node-panel-in {
  0%   { opacity: 0; transform: scale(0.88) translateY(8px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Vertical gradient indicator on industry cards */
.landing-industry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 220ms ease;
}

.landing-industry-card:hover::before { opacity: 1; }

.landing-industry-card--pulse::before  { background: linear-gradient(90deg, #ff7538, #ffd166, #4cc9f0); }
.landing-industry-card--edge::before   { background: linear-gradient(90deg, #4cc9f0, #7dd3fc, #34d399); }
.landing-industry-card--danger::before { background: linear-gradient(90deg, #fb7185, #f43f5e, #ffd166); }
.landing-industry-card--pink::before   { background: linear-gradient(90deg, #ec4899, #a855f7, #fb7185); }
.landing-industry-card--warn::before   { background: linear-gradient(90deg, #ff9f43, #ffd166, #ff7538); }
.landing-industry-card--blue::before   { background: linear-gradient(90deg, #3b82f6, #4cc9f0, #34d399); }
.landing-industry-card--ok::before     { background: linear-gradient(90deg, #34d399, #4cc9f0, #ffd166); }
.landing-industry-card--purple::before { background: linear-gradient(90deg, #a855f7, #ec4899, #7dd3fc); }
.landing-industry-card--lime::before   { background: linear-gradient(90deg, #a3e635, #34d399, #4cc9f0); }

/* Pricing card top border accent line (decorative, not reflection) */
.landing-pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  pointer-events: none;
  z-index: 2;
}
.landing-pricing-card--highlight::before {
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, #ff753888 25%, #ffd166 50%, #ff753888 75%, transparent 95%);
}

/* Diagonal glass sweep — Starter (contained via inset:0 + background-position, no-repeat) */
.landing-pricing-card:not(.landing-pricing-card--highlight)::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,0.04) 43%, rgba(255,255,255,0.09) 50%, rgba(255,255,255,0.04) 57%, transparent 62%);
  background-size: 300% 300%;
  background-repeat: no-repeat;
  background-position: 120% 120%;
  animation: card-glass-sweep 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* Diagonal glass sweep — Pro (orange, contained, no-repeat) */
.landing-pricing-card--highlight::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 38%, rgba(255,117,56,0.05) 43%, rgba(255,255,255,0.1) 50%, rgba(255,117,56,0.05) 57%, transparent 62%);
  background-size: 300% 300%;
  background-repeat: no-repeat;
  background-position: 120% 120%;
  animation: card-glass-sweep 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes card-glass-sweep {
  0%, 100% { background-position: 120% 120%; }
  50% { background-position: -20% -20%; }
}

/* Pro card glow border */
.landing-pricing-card--highlight {
  box-shadow: 0 0 0 1px rgba(255,117,56,0.15), 0 8px 32px rgba(255,117,56,0.08), 0 0 60px rgba(255,117,56,0.04);
}
.landing-pricing-card--highlight:hover {
  box-shadow: 0 0 0 1px rgba(255,117,56,0.3), 0 12px 48px rgba(255,117,56,0.15), 0 0 80px rgba(255,117,56,0.06);
}

/* Starter card subtle glass */
.landing-pricing-card:not(.landing-pricing-card--highlight) {
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.landing-pricing-card:not(.landing-pricing-card--highlight):hover {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 8px 32px rgba(0,0,0,0.3);
}

/* Pricing amount glow on Pro */
.landing-pricing-card--highlight .landing-pricing-amount {
  text-shadow: 0 0 20px rgba(255,117,56,0.25);
}

/* Feature list smooth stagger */
.landing-pricing-feature {
  animation: reveal-up 400ms ease both;
}
.landing-pricing-feature:nth-child(1) { animation-delay: 0.1s; }
.landing-pricing-feature:nth-child(2) { animation-delay: 0.15s; }
.landing-pricing-feature:nth-child(3) { animation-delay: 0.2s; }
.landing-pricing-feature:nth-child(4) { animation-delay: 0.25s; }
.landing-pricing-feature:nth-child(5) { animation-delay: 0.3s; }
.landing-pricing-feature:nth-child(6) { animation-delay: 0.35s; }

/* Graph orb canvas */
.landing-hero-graph-canvas {
  display: block;
  cursor: crosshair;
  border-radius: 16px;
}

/* Graph orb container (replaces orb-wrap) */
.landing-hero-graph-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 680px; /* match canvas — prevents halo overflow bleed */
  overflow: hidden; /* hard clip: nothing escapes the canvas bounds */
  border-radius: 16px; /* round corners matching the canvas */
  /* Prevent overflow bleed on viewports narrower than canvas */
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
}

/* Scale canvas down on mid-size viewports (1025–1140px) where the two-column grid is tight */
@media (max-width: 1140px) and (min-width: 1025px) {
  .landing-hero-right {
    height: 600px;
    overflow: hidden;
  }
  .landing-hero-graph-wrap {
    transform-origin: top center;
    transform: scale(0.88);
    margin: 0;
  }
}

/* ===================================================================
   Stitch Upgrades — Button Glow, Card Tone Shadows, Deployment Steps
   =================================================================== */

/* Button glow hover (Stitch Premium Polish) */
.landing-btn-accent-lg:hover,
.landing-btn-accent:hover {
  box-shadow: 0 4px 24px rgba(255, 117, 56, 0.35), 0 0 0 1px rgba(255, 117, 56, 0.2);
  transform: translateY(-1px);
}
.landing-btn-accent-lg:active,
.landing-btn-accent:active {
  transform: scale(0.97);
}
.landing-btn-ghost-lg:hover,
.landing-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

/* Card tone-glow shadows (Stitch Updated Glows) */
.landing-industry-card--pulse:hover  { box-shadow: 0 0 0 1px rgba(255, 117, 56, 0.25), 0 0 20px rgba(255, 117, 56, 0.12); }
.landing-industry-card--edge:hover   { box-shadow: 0 0 0 1px rgba(76, 201, 240, 0.25), 0 0 20px rgba(76, 201, 240, 0.12); }
.landing-industry-card--danger:hover { box-shadow: 0 0 0 1px rgba(251, 113, 133, 0.25), 0 0 20px rgba(251, 113, 133, 0.12); }
.landing-industry-card--pink:hover   { box-shadow: 0 0 0 1px rgba(236, 72, 153, 0.25), 0 0 20px rgba(236, 72, 153, 0.12); }
.landing-industry-card--warn:hover   { box-shadow: 0 0 0 1px rgba(255, 159, 67, 0.25), 0 0 20px rgba(255, 159, 67, 0.12); }
.landing-industry-card--blue:hover   { box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.25), 0 0 20px rgba(59, 130, 246, 0.12); }
.landing-industry-card--ok:hover     { box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.25), 0 0 20px rgba(52, 211, 153, 0.12); }
.landing-industry-card--purple:hover { box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.25), 0 0 20px rgba(168, 85, 247, 0.12); }
.landing-industry-card--lime:hover   { box-shadow: 0 0 0 1px rgba(163, 230, 53, 0.25), 0 0 20px rgba(163, 230, 53, 0.12); }

/* Deployment Steps */
.landing-deploy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .landing-deploy-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .landing-deploy-grid { grid-template-columns: 1fr; }
}

.landing-deploy-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 28px 24px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
  position: relative;
  overflow: hidden;
}
.landing-deploy-card:hover {
  border-color: rgba(255, 117, 56, 0.22);
  background: rgba(255, 117, 56, 0.03);
  transform: translateY(-2px);
}
.landing-deploy-card--live {
  border-color: rgba(52, 211, 153, 0.3);
  box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.2), 0 0 20px rgba(52, 211, 153, 0.08);
}
.landing-deploy-card--live:hover {
  box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.3), 0 0 28px rgba(52, 211, 153, 0.14);
}

.landing-deploy-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.16);
  line-height: 1;
  margin-bottom: 14px;
}
.landing-deploy-card--live .landing-deploy-number {
  color: var(--os-ok, #34d399);
  font-size: 1.5rem;
}

.landing-deploy-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--os-text, #f4f7fb);
  margin: 0 0 8px;
}

.landing-deploy-desc {
  font-size: 0.85rem;
  color: var(--os-muted, #93a4bc);
  line-height: 1.55;
  margin: 0;
}

/* Chatbot FAB */
.landing-chatbot-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 40;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--os-accent, #ff7538), #ef4444);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(255, 117, 56, 0.3);
  animation: glow-pulse 3s ease-in-out infinite;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.landing-chatbot-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(255, 117, 56, 0.45);
}

/* Glow pulse for FAB and CTAs */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255, 117, 56, 0.3); }
  50% { box-shadow: 0 4px 32px rgba(255, 117, 56, 0.5), 0 0 0 6px rgba(255, 117, 56, 0.08); }
}

/* Tone pulse dots (Stitch pattern) */
@keyframes tone-pulse-primary {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 117, 56, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 117, 56, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 117, 56, 0); }
}

/* Testimonial card glow on hover */
.landing-testimonial-card:hover {
  box-shadow: 0 0 0 1px rgba(255, 117, 56, 0.18), 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Colored dot grid overlay (Stitch Phase 91) */
.landing-hero-dot-grid {
  background-image: radial-gradient(rgba(255, 117, 56, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* FAB open state */
.landing-chatbot-fab--open {
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.15);
  animation: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* ── Kiron Alpha Chat Panel ─────────────────────────────────────────────── */
.landing-alpha-panel {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 39;
  width: 360px;
  max-height: 520px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: rgba(8, 12, 22, 0.97);
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 117, 56, 0.2);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,117,56,0.08);
  overflow: hidden;
  animation: node-panel-in 240ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.landing-alpha-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,117,56,0.06);
  flex-shrink: 0;
}

.landing-alpha-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.landing-alpha-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,117,56,0.15);
  border: 1.5px solid rgba(255,117,56,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff7538;
  font-size: 18px !important;
  flex-shrink: 0;
}

.landing-alpha-brand strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #f4f7fb;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
}

.landing-alpha-brand small {
  display: block;
  font-size: 0.7rem;
  color: rgba(147,164,188,0.7);
  font-family: var(--font-mono, monospace);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.landing-alpha-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(147,164,188,0.6);
  padding: 4px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  transition: color 150ms;
}
.landing-alpha-close:hover { color: #f4f7fb; }

.landing-alpha-messages {
  flex: 1 1;
  overflow-y: auto;
  padding: 14px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}
.landing-alpha-messages::-webkit-scrollbar { width: 4px; }
.landing-alpha-messages::-webkit-scrollbar-track { background: transparent; }
.landing-alpha-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

.landing-alpha-msg {
  max-width: 88%;
  animation: msg-in 180ms ease;
}
@keyframes msg-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.landing-alpha-msg--assistant {
  align-self: flex-start;
}

.landing-alpha-msg--user {
  align-self: flex-end;
}

.landing-alpha-msg p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  padding: 9px 13px;
  border-radius: 14px;
}

.landing-alpha-msg--assistant p {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(200,220,255,0.9);
  border-radius: 4px 14px 14px 14px;
}

.landing-alpha-msg--user p {
  background: rgba(255,117,56,0.15);
  border: 1px solid rgba(255,117,56,0.25);
  color: #f4f7fb;
  border-radius: 14px 14px 4px 14px;
}

.landing-alpha-typing {
  display: flex;
  gap: 5px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px 14px 14px 14px;
  width: -moz-fit-content;
  width: fit-content;
}
.landing-alpha-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,117,56,0.6);
  animation: typing-bounce 1.2s ease-in-out infinite;
}
.landing-alpha-typing span:nth-child(2) { animation-delay: 0.2s; }
.landing-alpha-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.landing-alpha-prompts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 14px 10px;
  flex-shrink: 0;
}

.landing-alpha-prompt {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: rgba(200,220,255,0.75);
  font-size: 0.75rem;
  padding: 8px 12px;
  text-align: left;
  cursor: pointer;
  transition: background 150ms, border-color 150ms;
}
.landing-alpha-prompt:hover {
  background: rgba(255,117,56,0.08);
  border-color: rgba(255,117,56,0.2);
  color: #f4f7fb;
}

.landing-alpha-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.landing-alpha-input {
  flex: 1 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #f4f7fb;
  font-size: 0.8125rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color 150ms;
}
.landing-alpha-input::placeholder { color: rgba(147,164,188,0.5); }
.landing-alpha-input:focus { border-color: rgba(255,117,56,0.35); }

.landing-alpha-send {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff7538, #ef4444);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: opacity 150ms, transform 150ms;
}
.landing-alpha-send:disabled { opacity: 0.4; cursor: default; }
.landing-alpha-send:not(:disabled):hover { transform: scale(1.08); }

@media (max-width: 480px) {
  .landing-alpha-panel {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: 88px;
  }
}

/* (Old app-mock styles — replaced by km-* system) */

.app-mock {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  background: rgba(10, 15, 28, 0.9);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.app-mock-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.app-mock-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.app-mock-dot--ok { background: #34d399; box-shadow: 0 0 5px #34d39988; animation: mock-pulse 2s ease-in-out infinite; }
@keyframes mock-pulse { 0%,100% { opacity:1; } 50% { opacity:0.5; } }

.app-mock-topbar-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(200,220,255,0.7);
  font-family: var(--font-mono, monospace);
  letter-spacing: 0.04em;
}

.app-mock-chip {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 6px;
}
.app-mock-chip--ok     { background: rgba(52,211,153,0.15); color: #34d399; border: 1px solid rgba(52,211,153,0.25); }
.app-mock-chip--accent { background: rgba(255,117,56,0.15); color: #ff7538; border: 1px solid rgba(255,117,56,0.25); }
.app-mock-chip--info   { background: rgba(96,165,250,0.15); color: #60a5fa; border: 1px solid rgba(96,165,250,0.25); }

/* Chat mock */
.app-mock-chat-body {
  flex: 1 1;
  overflow: hidden;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-mock-msg { display: flex; align-items: flex-start; gap: 7px; }
.app-mock-msg--user { flex-direction: row-reverse; }

.app-mock-msg-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,117,56,0.15);
  border: 1px solid rgba(255,117,56,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff7538;
  flex-shrink: 0;
}

.app-mock-msg-bubble {
  font-size: 0.68rem;
  line-height: 1.5;
  padding: 7px 10px;
  border-radius: 4px 10px 10px 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(200,220,255,0.85);
  max-width: 80%;
}
.app-mock-msg-bubble--user {
  background: rgba(255,117,56,0.12);
  border-color: rgba(255,117,56,0.2);
  border-radius: 10px 10px 4px 10px;
  color: rgba(244,247,251,0.9);
}
.app-mock-msg-bubble strong { color: #f4f7fb; }

.app-mock-action-row {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}
.app-mock-action {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(200,220,255,0.8);
  cursor: default;
}
.app-mock-action--ok {
  background: rgba(52,211,153,0.12);
  border-color: rgba(52,211,153,0.25);
  color: #34d399;
}

/* Orders mock */
.app-mock-list {
  flex: 1 1;
  overflow: hidden;
  padding: 4px 0;
}
.app-mock-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.68rem;
}
.app-mock-row:last-child { border-bottom: none; }
.app-mock-row-id     { color: rgba(147,164,188,0.6); font-family: var(--font-mono, monospace); width: 42px; flex-shrink: 0; }
.app-mock-row-source { color: #60a5fa; width: 62px; flex-shrink: 0; font-weight: 600; }
.app-mock-row-item   { flex: 1 1; color: rgba(200,220,255,0.8); }
.app-mock-row-amount { color: #f4f7fb; font-weight: 700; width: 44px; text-align: right; flex-shrink: 0; }
.app-mock-status-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.app-mock-status-dot--live { background: #34d399; box-shadow: 0 0 4px #34d399; animation: mock-pulse 1.5s ease-in-out infinite; }
.app-mock-status-dot--done { background: rgba(147,164,188,0.3); }

/* Agenda mock */
.app-mock-agenda-list {
  flex: 1 1;
  overflow: hidden;
  padding: 4px 0;
}
.app-mock-agenda-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.app-mock-agenda-row:last-child { border-bottom: none; }
.app-mock-agenda-row--active { background: rgba(255,117,56,0.05); }
.app-mock-agenda-row--confirmed { background: rgba(52,211,153,0.03); }

.app-mock-agenda-time {
  font-size: 0.65rem;
  font-family: var(--font-mono, monospace);
  color: rgba(147,164,188,0.6);
  width: 36px;
  flex-shrink: 0;
}
.app-mock-agenda-info {
  flex: 1 1;
}
.app-mock-agenda-info strong {
  display: block;
  font-size: 0.7rem;
  color: #f4f7fb;
  font-weight: 600;
}
.app-mock-agenda-info small {
  display: block;
  font-size: 0.62rem;
  color: rgba(147,164,188,0.6);
}
.app-mock-agenda-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  flex-shrink: 0;
}
.app-mock-agenda-badge--active    { background: rgba(255,117,56,0.15); color: #ff7538; border: 1px solid rgba(255,117,56,0.25); }
.app-mock-agenda-badge--confirmed { background: rgba(52,211,153,0.12); color: #34d399; border: 1px solid rgba(52,211,153,0.22); }
.app-mock-agenda-badge--pending   { background: rgba(147,164,188,0.1); color: rgba(147,164,188,0.7); border: 1px solid rgba(147,164,188,0.15); }

/* Reportes mock */
.app-mock--reportes {
  padding-bottom: 0;
}
.app-mock-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1px;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.app-mock-kpi {
  padding: 10px 10px 8px;
  background: rgba(10,15,28,0.9);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.app-mock-kpi-label { font-size: 0.58rem; color: rgba(147,164,188,0.6); text-transform: uppercase; letter-spacing: 0.05em; }
.app-mock-kpi-value { font-size: 0.9rem; font-weight: 700; color: #f4f7fb; font-family: var(--font-heading, 'Montserrat', sans-serif); }
.app-mock-kpi-change { font-size: 0.62rem; font-weight: 700; }
.app-mock-kpi--ok   .app-mock-kpi-change { color: #34d399; }
.app-mock-kpi--warn .app-mock-kpi-change { color: #ff9f43; }
.app-mock-kpi--info .app-mock-kpi-change { color: #60a5fa; }

.app-mock-chart {
  flex: 1 1;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 10px 14px 8px;
  overflow: hidden;
}
.app-mock-chart-col {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}
.app-mock-chart-bar {
  width: 100%;
  border-radius: 4px 4px 0 0;
  background: rgba(255,255,255,0.12);
  min-height: 4px;
  transition: height 600ms ease;
}
.app-mock-chart-bar--active {
  background: linear-gradient(180deg, #ff7538, rgba(255,117,56,0.5));
  box-shadow: 0 0 8px rgba(255,117,56,0.4);
}
.app-mock-chart-label { font-size: 0.6rem; color: rgba(147,164,188,0.5); font-family: var(--font-mono, monospace); }

/* ── Kiron Mock (km-*) — Rich app previews ──────────────────────────────── */

.landing-feature-mock {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 28%;
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── iPad Pro M4 Landscape Frame ──────────────────────────────────────────── */
.km-ipad-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
}
.km-ipad-body {
  position: relative;
  background: linear-gradient(160deg, #2a2a2e 0%, #1a1a1c 40%, #141416 100%);
  border-radius: 18px;
  /* Landscape bezels: thin top/bottom, slightly wider on sides for camera */
  padding: 12px 18px 12px 26px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -1px 0 rgba(0,0,0,0.6),
    inset 1px 0 0 rgba(255,255,255,0.06),
    0 0 0 1px rgba(0,0,0,0.7),
    0 4px 8px rgba(0,0,0,0.4),
    0 16px 40px rgba(0,0,0,0.5);
}
/* Camera lens - left edge center (landscape iPad Pro M4 position) */
.km-ipad-camera {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #3a3a3e, #111);
  box-shadow: 0 0 0 1.5px rgba(255,255,255,0.06), inset 0 0 2px rgba(255,255,255,0.05);
}
.km-ipad-camera::after {
  content: '';
  position: absolute;
  top: 1.5px; left: 1.5px;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.km-ipad-screen {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #05070c;
}

.km-shell {
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  background: #05070c;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Sidebar */
.km-sidebar {
  width: 44px;
  background: #080c16;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0 6px;
  gap: 2px;
  flex-shrink: 0;
}
.km-sidebar-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff7538, #ef4444);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
}
.km-sidebar-item {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(147,164,188,0.4);
  transition: all 150ms;
}
.km-sidebar-item .material-symbols-outlined { font-size: 17px !important; }
.km-sidebar-item--active {
  background: rgba(255,117,56,0.12);
  color: #ff7538;
  box-shadow: 0 0 8px rgba(255,117,56,0.15);
  position: relative;
}
.km-sidebar-item--active::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px; width: 2px;
  background: #ff7538;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 6px #ff7538;
}

/* Topbar */
.km-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
  background: linear-gradient(90deg, rgba(13,18,28,0.8), rgba(255,117,56,0.03), rgba(13,18,28,0.8));
}
.km-topbar-title {
  font-size: 0.72rem;
  color: #f4f7fb;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
}
.km-topbar-chips { display: flex; gap: 5px; }
.km-topbar-icon { font-size: 16px !important; color: rgba(147,164,188,0.35); }
.km-topbar-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,117,56,0.2); color: #ff7538;
  font-size: 0.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Main content area */
.km-main { flex: 1 1; display: flex; flex-direction: column; min-width: 0; }
.km-content { flex: 1 1; padding: 8px; overflow: hidden; }

/* Shared components */
.km-chip {
  font-size: 0.55rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; padding: 2px 6px; border-radius: 5px;
}
.km-chip--ok     { background: rgba(52,211,153,0.12); color: #34d399; border: 1px solid rgba(52,211,153,0.2); }
.km-chip--info   { background: rgba(96,165,250,0.12); color: #60a5fa; border: 1px solid rgba(96,165,250,0.2); }
.km-chip--warn   { background: rgba(255,159,67,0.12); color: #ff9f43; border: 1px solid rgba(255,159,67,0.2); }
.km-chip--accent { background: rgba(255,117,56,0.12); color: #ff7538; border: 1px solid rgba(255,117,56,0.2); }

.km-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.km-dot--ok   { background: #34d399; box-shadow: 0 0 4px #34d39988; }
.km-dot--warn { background: #ff9f43; box-shadow: 0 0 4px #ff9f4388; }
.km-dot--info { background: #60a5fa; }

.km-badge {
  font-size: 0.55rem; font-weight: 700; padding: 2px 6px; border-radius: 5px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.km-badge--ok   { background: rgba(52,211,153,0.15); color: #34d399; }
.km-badge--info { background: rgba(96,165,250,0.15); color: #60a5fa; }
.km-badge--warn { background: rgba(255,159,67,0.15); color: #ff9f43; }

.km-btn {
  font-size: 0.58rem; font-weight: 700; padding: 3px 8px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05);
  color: rgba(200,220,255,0.8); cursor: default;
}
.km-btn--ok     { background: rgba(52,211,153,0.12); border-color: rgba(52,211,153,0.25); color: #34d399; }
.km-btn--accent { background: rgba(255,117,56,0.12); border-color: rgba(255,117,56,0.25); color: #ff7538; }
.km-btn--info   { background: rgba(96,165,250,0.12); border-color: rgba(96,165,250,0.25); color: #60a5fa; }
.km-btn--ghost  { background: transparent; border-color: rgba(255,255,255,0.08); color: rgba(147,164,188,0.6); }
.km-btn--full   { width: 100%; text-align: center; padding: 6px; }

/* ── KIRON AI LAYOUT ─── */
.km-ai-layout { display: flex; gap: 8px; }
.km-ai-recs { flex: 1 1; display: flex; flex-direction: column; gap: 6px; }
.km-ai-status { width: 140px; flex-shrink: 0; display: flex; flex-direction: column; gap: 5px; }
.km-ai-section-label {
  font-size: 0.55rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(147,164,188,0.45);
  margin-bottom: 2px;
}
.km-ai-rec-card {
  display: flex; gap: 8px; padding: 8px;
  border-radius: 8px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.km-ai-rec-card--warn {
  border-color: rgba(255,159,67,0.25);
  background: linear-gradient(135deg, rgba(255,159,67,0.06), rgba(255,159,67,0.02));
  box-shadow: 0 0 12px rgba(255,159,67,0.06);
}
.km-ai-rec-card--accent {
  border-color: rgba(255,117,56,0.25);
  background: linear-gradient(135deg, rgba(255,117,56,0.06), rgba(255,117,56,0.02));
  box-shadow: 0 0 12px rgba(255,117,56,0.06);
}
.km-ai-rec-icon { font-size: 16px !important; margin-top: 1px; flex-shrink: 0; }
.km-ai-rec-card--warn .km-ai-rec-icon { color: #ff9f43; }
.km-ai-rec-card--accent .km-ai-rec-icon { color: #ff7538; }
.km-ai-rec-card strong { font-size: 0.65rem; color: #f4f7fb; display: block; margin-bottom: 2px; }
.km-ai-rec-card p { font-size: 0.58rem; color: rgba(147,164,188,0.7); line-height: 1.4; margin: 0 0 4px; }
.km-ai-actions { display: flex; gap: 4px; }

.km-ai-signal {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.6rem; color: rgba(200,220,255,0.7);
  padding: 4px 6px; border-radius: 6px;
  background: rgba(255,255,255,0.02);
}
.km-ai-signal small { margin-left: auto; color: rgba(147,164,188,0.5); font-size: 0.55rem; }
.km-ai-divider { height: 1px; background: rgba(255,255,255,0.05); margin: 4px 0; }

.km-module-grid { display: flex; flex-wrap: wrap; gap: 3px; }
.km-module-pill {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.52rem; color: rgba(200,220,255,0.6);
  padding: 2px 6px; border-radius: 4px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
}

/* ── PEDIDOS LAYOUT ─── */
.km-filters { display: flex; gap: 4px; margin-bottom: 6px; }
.km-filter-tab {
  font-size: 0.58rem; padding: 4px 8px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.02);
  color: rgba(147,164,188,0.6); cursor: default; display: flex; gap: 4px; align-items: center;
}
.km-filter-tab span { font-size: 0.52rem; opacity: 0.5; }
.km-filter-tab--active {
  background: rgba(255,117,56,0.1); border-color: rgba(255,117,56,0.2); color: #ff7538;
}

.km-table { display: flex; flex-direction: column; }
.km-table-header {
  display: flex; gap: 4px; padding: 4px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.km-th {
  font-size: 0.52rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: rgba(147,164,188,0.4);
}
.km-table-row {
  display: flex; gap: 4px; padding: 5px 6px; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: background 150ms;
}
.km-table-row:nth-child(odd) { background: rgba(255,255,255,0.01); }
.km-td { font-size: 0.6rem; color: rgba(200,220,255,0.8); }
.km-td--id { width: 38px; color: rgba(147,164,188,0.5); font-family: var(--font-mono, monospace); flex-shrink: 0; }
.km-td--client { flex: 1 1; min-width: 0; color: #f4f7fb; font-weight: 600; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.km-td--channel { width: 68px; min-width: 68px; display: flex; align-items: center; gap: 3px; color: #60a5fa; flex-shrink: 0; font-size: 0.55rem; overflow: hidden; white-space: nowrap; }
.km-td--items { width: 26px; text-align: center; flex-shrink: 0; }
.km-td--total { width: 38px; font-weight: 700; color: #f4f7fb; flex-shrink: 0; }
.km-td--status { width: 58px; flex-shrink: 0; text-align: center; }
.km-td--time { width: 46px; min-width: 46px; font-size: 0.52rem; color: rgba(147,164,188,0.45); flex-shrink: 0; font-family: var(--font-mono, monospace); white-space: nowrap; overflow: hidden; }
.km-th--id { width: 38px; } .km-th--client { flex: 1 1; min-width: 0; } .km-th--channel { width: 68px; }
.km-th--items { width: 26px; text-align: center; } .km-th--total { width: 38px; }
.km-th--status { width: 58px; text-align: center; } .km-th--time { width: 46px; }

/* ── AGENDA LAYOUT ─── */
.km-agenda-layout { display: flex; gap: 8px; }
.km-agenda-sidebar { width: 130px; flex-shrink: 0; display: flex; flex-direction: column; gap: 8px; }
.km-agenda-timeline { flex: 1 1; display: flex; flex-direction: column; gap: 3px; }

.km-mini-cal {
  padding: 6px; border-radius: 8px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
}
.km-mini-cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px; color: rgba(200,220,255,0.7);
}
.km-mini-cal-header strong { font-size: 0.6rem; }
.km-mini-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); grid-gap: 2px; gap: 2px; text-align: center; }
.km-mini-cal-day { font-size: 0.48rem; color: rgba(147,164,188,0.4); font-weight: 700; }
.km-mini-cal-num { font-size: 0.52rem; color: rgba(200,220,255,0.5); padding: 2px; border-radius: 4px; }
.km-mini-cal-num--today { background: rgba(255,117,56,0.2); color: #ff7538; font-weight: 700; }

.km-agenda-stats { display: flex; gap: 4px; }
.km-agenda-stat {
  flex: 1 1; text-align: center; padding: 5px 4px;
  border-radius: 6px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
}
.km-agenda-stat strong { display: block; font-size: 0.8rem; color: #f4f7fb; }
.km-agenda-stat span { font-size: 0.48rem; color: rgba(147,164,188,0.5); }

.km-agenda-day-label {
  font-size: 0.6rem; font-weight: 700; color: rgba(200,220,255,0.5);
  margin-bottom: 2px; font-family: var(--font-heading, 'Montserrat', sans-serif);
}
.km-agenda-slot { display: flex; gap: 8px; align-items: stretch; }
.km-agenda-time {
  width: 32px; flex-shrink: 0; font-size: 0.52rem;
  color: rgba(147,164,188,0.4); font-family: var(--font-mono, monospace);
  padding-top: 4px;
}
.km-agenda-card {
  flex: 1 1; display: flex; align-items: center; justify-content: space-between;
  padding: 5px 8px; border-radius: 6px;
  background: rgba(255,255,255,0.03); border-left: 3px solid rgba(255,255,255,0.1);
}
.km-agenda-card--confirmed { border-left-color: #34d399; }
.km-agenda-card--wa-confirmed { border-left-color: #60a5fa; }
.km-agenda-card--pending { border-left-color: #ff9f43; }
.km-agenda-card-main strong { font-size: 0.62rem; color: #f4f7fb; display: block; }
.km-agenda-card-main small { font-size: 0.52rem; color: rgba(147,164,188,0.5); }
.km-agenda-free {
  flex: 1 1; display: flex; align-items: center; gap: 4px;
  font-size: 0.55rem; color: rgba(147,164,188,0.3);
  padding: 5px 8px; border-radius: 6px;
  border: 1px dashed rgba(255,255,255,0.06);
}

/* ── REPORTES LAYOUT ─── */
.km-kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); grid-gap: 6px; gap: 6px; margin-bottom: 8px; }
.km-kpi-card {
  padding: 8px; border-radius: 8px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 200ms, box-shadow 200ms;
  position: relative;
  overflow: hidden;
}
.km-kpi-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,117,56,0.2), transparent);
}
.km-kpi-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.km-kpi-icon { font-size: 15px !important; color: rgba(147,164,188,0.35); }
.km-kpi-change { font-size: 0.55rem; font-weight: 700; }
.km-kpi-change--ok { color: #34d399; }
.km-kpi-change--info { color: #60a5fa; }
.km-kpi-change--warn { color: #ff9f43; }
.km-kpi-value { font-size: 0.85rem; color: #f4f7fb; display: block; font-family: var(--font-heading, 'Montserrat', sans-serif); }
.km-kpi-label { font-size: 0.5rem; color: rgba(147,164,188,0.45); text-transform: uppercase; letter-spacing: 0.06em; }
.km-sparkline { width: 100%; height: 14px; margin-top: 4px; }

.km-charts-row { display: flex; gap: 6px; }
.km-chart-card {
  padding: 8px; border-radius: 8px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
  flex: 1 1;
}
.km-chart-card--wide { flex: 1.6 1; }
.km-chart-title {
  font-size: 0.55rem; font-weight: 700; color: rgba(147,164,188,0.5);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px;
}
.km-chart-divider { height: 1px; background: rgba(255,255,255,0.05); margin: 8px 0; }

.km-bar-chart { display: flex; align-items: flex-end; gap: 3px; height: 70px; }
.km-bar-col { flex: 1 1; display: flex; flex-direction: column; align-items: center; gap: 3px; height: 100%; justify-content: flex-end; }
.km-bar { width: 100%; border-radius: 3px 3px 0 0; background: rgba(255,255,255,0.1); min-height: 3px; }
.km-bar--active { background: linear-gradient(180deg, #ff7538, rgba(255,117,56,0.45)); box-shadow: 0 0 6px rgba(255,117,56,0.35); }
.km-bar-label { font-size: 0.45rem; color: rgba(147,164,188,0.35); font-family: var(--font-mono, monospace); }

/* Channel layout with donut */
.km-channel-layout { display: flex; gap: 10px; align-items: flex-start; }
.km-donut-wrap { position: relative; width: 58px; height: 58px; flex-shrink: 0; }
.km-donut { width: 58px; height: 58px; transform: rotate(-90deg); }
.km-donut-seg { animation: km-donut-draw 1.2s ease both; }
@keyframes km-donut-draw { from { stroke-dasharray: 0 100; } }
.km-donut-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.km-donut-center strong { font-size: 0.6rem; color: #f4f7fb; line-height: 1; }
.km-donut-center small { font-size: 0.4rem; color: rgba(147,164,188,0.5); }

.km-channel-list { display: flex; flex-direction: column; gap: 5px; flex: 1 1; }
.km-channel-row { display: flex; align-items: center; gap: 5px; }
.km-channel-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.km-channel-bar-track { flex: 1 1; height: 5px; border-radius: 3px; background: rgba(255,255,255,0.05); overflow: hidden; }
.km-channel-bar-fill { height: 100%; border-radius: 3px; }
.km-channel-name { font-size: 0.5rem; color: rgba(200,220,255,0.6); width: 48px; flex-shrink: 0; }
.km-channel-pct { font-size: 0.52rem; color: #f4f7fb; }
.km-channel-values { display: flex; flex-direction: column; align-items: flex-end; flex-shrink: 0; width: 50px; }
.km-channel-values small { font-size: 0.42rem; color: rgba(147,164,188,0.4); }

/* Trend line overlay on bar chart */
.km-bar-chart { position: relative; }
.km-trend-line {
  position: absolute; top: 0; left: 0; width: 100%; height: calc(100% - 14px);
  pointer-events: none;
}

.km-funnel { display: flex; flex-direction: column; gap: 3px; }
.km-funnel-step { position: relative; height: 18px; }
.km-funnel-bar {
  position: absolute; top: 0; left: 0; height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(255,117,56,0.2), rgba(255,117,56,0.06));
}
.km-funnel-label {
  position: relative; z-index: 1; display: flex; align-items: center;
  justify-content: space-between; padding: 0 6px; height: 100%;
  font-size: 0.5rem; color: rgba(200,220,255,0.6);
}
.km-funnel-label strong { color: #f4f7fb; font-size: 0.55rem; }

@media (max-width: 768px) {
  .km-sidebar { display: none; }
  .km-ai-status { display: none; }
  .km-agenda-sidebar { display: none; }
  .km-kpi-row { grid-template-columns: repeat(2, 1fr); }
  .km-charts-row { flex-direction: column; }
  .km-td--channel { display: none; }
  .km-td--actions { display: none; }
  .km-kpi-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ── Enhanced km-* elements ─────────────────────────────────────────────── */

/* Sidebar logo — dark circle + purple glow */
.km-sidebar-logo {
  margin-bottom: 10px;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: #080a10;
  border: 1px solid rgba(168,85,247,0.2);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 14px rgba(168,85,247,0.25), 0 0 4px rgba(168,85,247,0.15) inset;
  animation: km-logo-glow 3s ease-in-out infinite;
}
@keyframes km-logo-glow {
  0%, 100% { box-shadow: 0 0 14px rgba(168,85,247,0.25), 0 0 4px rgba(168,85,247,0.15) inset; }
  50% { box-shadow: 0 0 22px rgba(168,85,247,0.4), 0 0 8px rgba(168,85,247,0.2) inset; }
}
.km-sidebar-logo-img {
  width: 20px; height: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(168,85,247,0.5));
}

/* Shell scanline overlay for premium feel */
.km-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  border-radius: 10px;
  z-index: 2;
}
.km-shell { position: relative; }

/* Dot grid background on content */
.km-content {
  background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 16px 16px;
}

/* Sidebar glow line */
.km-sidebar::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,117,56,0.15), transparent);
}
.km-sidebar { position: relative; }

/* Entrance animation */
@keyframes km-slide-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.km-animate-in {
  animation: km-slide-in 400ms ease both;
}

/* Pulsing dots */
.km-dot--pulse {
  animation: km-pulse-dot 2s ease-in-out infinite;
}
@keyframes km-pulse-dot {
  0%, 100% { box-shadow: 0 0 4px currentColor; }
  50%      { box-shadow: 0 0 8px currentColor, 0 0 0 3px rgba(52,211,153,0.15); }
}
.km-dot--mini {
  width: 5px; height: 5px;
  position: absolute; top: -1px; right: -1px;
}

/* Glow buttons */
.km-btn--glow {
  box-shadow: 0 0 8px rgba(255,117,56,0.2);
}
.km-btn--xs { padding: 2px 6px; font-size: 0.52rem; }

/* Client avatar */
.km-client-avatar {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,117,56,0.15); color: #ff7538;
  font-size: 0.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-right: 4px;
}
.km-client-avatar--sm { width: 22px; height: 22px; font-size: 0.55rem; }

/* Topbar avatar dot */
.km-topbar-avatar { position: relative; }

/* Chip ghost */
.km-chip--ghost {
  background: transparent; color: rgba(147,164,188,0.5);
  border: 1px solid rgba(255,255,255,0.06);
}

/* KPI strip (pedidos) */
.km-kpi-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-gap: 6px;
  gap: 6px; margin-bottom: 6px;
}
.km-kpi-mini {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 8px; border-radius: 8px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
}
.km-kpi-mini .material-symbols-outlined { font-size: 16px !important; }
.km-kpi-mini strong { font-size: 0.72rem; color: #f4f7fb; font-family: var(--font-heading, 'Montserrat', sans-serif); }
.km-kpi-mini span:last-child { font-size: 0.5rem; color: rgba(147,164,188,0.5); }
.km-kpi-mini--ok .material-symbols-outlined { color: #34d399; }
.km-kpi-mini--warn .material-symbols-outlined { color: #ff9f43; }
.km-kpi-mini--info .material-symbols-outlined { color: #60a5fa; }
.km-kpi-mini--accent .material-symbols-outlined { color: #ff7538; }

/* Table actions column */
.km-th--actions { width: 80px; text-align: right; }
.km-td--actions { width: 80px; display: flex; gap: 3px; justify-content: flex-end; }

/* Urgent row */
.km-table-row--urgent {
  background: rgba(255,159,67,0.04);
  border-left: 2px solid #ff9f43;
}

/* AI recommendation enhancements */
.km-ai-rec-header {
  display: flex; align-items: center; gap: 6px; margin-bottom: 3px;
}
.km-ai-progress {
  height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.06);
  margin: 4px 0;
  overflow: hidden;
}
.km-ai-progress-bar {
  height: 100%; border-radius: 2px;
  animation: km-progress-fill 1.2s ease both;
}
.km-ai-progress-bar--warn { background: linear-gradient(90deg, #ff9f43, #fb7185); }
@keyframes km-progress-fill {
  from { width: 0; }
}
.km-ai-metrics-row {
  display: flex; gap: 6px; margin: 5px 0;
}
.km-ai-metric {
  padding: 4px 6px; border-radius: 6px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}
.km-ai-metric span { display: block; font-size: 0.48rem; color: rgba(147,164,188,0.45); text-transform: uppercase; }
.km-ai-metric strong { display: block; font-size: 0.6rem; color: #f4f7fb; }

/* Signal group */
.km-ai-signal-group { display: flex; flex-direction: column; gap: 3px; }

/* Team row */
.km-team-row { display: flex; align-items: center; gap: 4px; }
.km-team-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  font-size: 0.55rem; font-weight: 700; color: #f4f7fb;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
}
.km-team-count { font-size: 0.55rem; color: rgba(147,164,188,0.5); margin-left: 2px; }

/* Reminder cards */
.km-reminder-card {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 6px; border-radius: 6px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 3px;
}
.km-reminder-card strong { font-size: 0.55rem; color: #f4f7fb; display: block; }
.km-reminder-card small { font-size: 0.48rem; color: rgba(147,164,188,0.45); display: block; }

/* Calendar events dots */
.km-mini-cal-num--has-events::after {
  content: '';
  display: block;
  width: 3px; height: 3px; border-radius: 50%;
  background: #60a5fa;
  margin: 1px auto 0;
}

/* Agenda view tabs */
.km-agenda-view-tabs { display: flex; gap: 3px; }
.km-agenda-day-label {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4px;
}
.km-agenda-day-label > span {
  font-size: 0.6rem; font-weight: 700; color: rgba(200,220,255,0.5);
  font-family: var(--font-heading, 'Montserrat', sans-serif);
}

/* Agenda stat tones */
.km-agenda-stat--ok { border-left: 2px solid #34d399; }
.km-agenda-stat--warn { border-left: 2px solid #ff9f43; }

/* Bar grow animation */
.km-bar-grow {
  animation: km-bar-grow-v 800ms ease both;
}
@keyframes km-bar-grow-v {
  from { height: 0 !important; }
}
.km-bar--bg {
  position: absolute; bottom: 0; width: 100%;
  background: rgba(255,255,255,0.06);
  border-radius: 3px 3px 0 0;
  height: var(--bar-h);
}
.km-bar--fg {
  position: absolute; bottom: 0; width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
  border-radius: 3px 3px 0 0;
  height: var(--bar-h);
}
.km-bar-col { position: relative; }

/* Chart title row */
.km-chart-title-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.km-chart-legend {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.5rem; color: rgba(147,164,188,0.4);
}
.km-legend-dot { width: 6px; height: 6px; border-radius: 2px; }

/* Horizontal bar grow */
.km-bar-grow-h {
  animation: km-bar-grow-horiz 1000ms ease both;
}
@keyframes km-bar-grow-horiz {
  from { width: 0 !important; }
}

/* (channel-row moved to donut section) */

/* Funnel percentage */
.km-funnel-label small {
  font-size: 0.48rem; color: rgba(147,164,188,0.4);
  margin-left: 4px;
}

/* Products table */
.km-products-table { display: flex; flex-direction: column; gap: 3px; }
.km-product-row {
  display: flex; align-items: center; gap: 6px;
  padding: 3px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.km-product-name { flex: 1 1; font-size: 0.55rem; color: rgba(200,220,255,0.7); }
.km-product-qty { font-size: 0.55rem; color: rgba(147,164,188,0.5); width: 28px; text-align: center; }
.km-product-rev { font-size: 0.52rem; color: rgba(147,164,188,0.45); width: 44px; text-align: right; flex-shrink: 0; }

/* Heatmap */
.km-heatmap { display: flex; flex-direction: column; gap: 2px; }
.km-heatmap-corner { width: 16px; flex-shrink: 0; }
.km-heatmap-row { display: flex; gap: 2px; align-items: center; }
.km-heatmap-day { width: 16px; font-size: 0.45rem; color: rgba(147,164,188,0.4); flex-shrink: 0; text-align: center; }
.km-heatmap-h { font-size: 0.4rem; color: rgba(147,164,188,0.3); width: calc((100% - 18px) / 12); text-align: center; }
.km-heatmap-cell { width: calc((100% - 18px) / 12); aspect-ratio: 1.2; border-radius: 2px; }
.km-heatmap-cell--legend { width: 12px; height: 8px; border-radius: 2px; }
.km-heatmap-legend {
  display: flex; align-items: center; gap: 3px; margin-top: 4px;
  font-size: 0.42rem; color: rgba(147,164,188,0.35);
}
.km-heatmap > .km-heatmap-h { display: none; }
.km-heatmap::before { display: none; }

/* Cohort table */
.km-cohort { display: flex; flex-direction: column; gap: 2px; }
.km-cohort-header { display: flex; gap: 2px; }
.km-cohort-label { font-size: 0.42rem; color: rgba(147,164,188,0.35); text-align: center; flex: 1 1; min-width: 0; }
.km-cohort-row { display: flex; gap: 2px; }
.km-cohort-month { font-size: 0.45rem; color: rgba(147,164,188,0.4); width: 28px; flex-shrink: 0; display: flex; align-items: center; }
.km-cohort-cell {
  flex: 1 1; min-width: 0; border-radius: 3px;
  font-size: 0.45rem; font-weight: 600; text-align: center;
  padding: 3px 0;
}

/* Extra KPI row */
.km-extra-kpis { display: flex; gap: 6px; }
.km-extra-kpi {
  flex: 1 1; display: flex; align-items: center; gap: 6px;
  padding: 5px 6px; border-radius: 6px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
}
.km-extra-kpi strong { font-size: 0.62rem; color: #f4f7fb; display: block; }
.km-extra-kpi small { font-size: 0.45rem; color: rgba(147,164,188,0.45); display: block; }

/* ── Phone Bot Demo ─────────────────────────────────────────────────────── */
.phone-demo-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.phone-demo-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(147, 164, 188, 0.8);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 180ms ease;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
}
.phone-demo-tab:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #f4f7fb;
}
.phone-demo-tab--active {
  background: rgba(255, 255, 255, 0.06);
  color: #f4f7fb;
}

.phone-demo-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  max-width: 960px;
  margin: 0 auto;
}

.phone-demo-phone-wrap {
  flex-shrink: 0;
}

/* Phone frame */
.phone-frame {
  width: 310px;
  border-radius: 36px;
  background: #0a0e1a;
  border: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(var(--phone-accent-rgb, 255, 117, 56), 0.06);
  position: relative;
}

.phone-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 20px 4px;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: #0f1724;
}
.phone-notch {
  width: 80px;
  height: 22px;
  background: #000;
  border-radius: 0 0 14px 14px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.phone-status-icons {
  display: flex;
  gap: 3px;
  color: rgba(255, 255, 255, 0.6);
}

/* WA header */
.phone-wa-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #1a2234;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.phone-wa-back {
  font-size: 18px !important;
  color: rgba(255, 255, 255, 0.4);
}
.phone-wa-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.phone-wa-info {
  flex: 1 1;
  min-width: 0;
}
.phone-wa-info strong {
  display: block;
  font-size: 0.78rem;
  color: #f4f7fb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.phone-wa-info small {
  display: block;
  font-size: 0.62rem;
  color: rgba(52, 211, 153, 0.8);
}

/* Chat area */
.phone-chat {
  padding: 8px 10px 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 400px;
  overflow-y: auto;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 117, 56, 0.03), transparent 50%),
    #0c1220;
}
.phone-chat::-webkit-scrollbar { width: 3px; }
.phone-chat::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.08); border-radius: 3px; }

.phone-chat-date {
  text-align: center;
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(147, 164, 188, 0.4);
  letter-spacing: 0.08em;
  padding: 4px 0;
  font-family: var(--font-mono, monospace);
}

.phone-bubble {
  max-width: 85%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.phone-bubble--bot { align-self: flex-start; }
.phone-bubble--user { align-self: flex-end; }

.phone-bubble-text {
  font-size: 0.72rem;
  line-height: 1.5;
  padding: 7px 10px 4px;
  border-radius: 4px 12px 12px 12px;
  position: relative;
}
.phone-bubble--bot .phone-bubble-text {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(220, 230, 250, 0.9);
}
.phone-bubble--user .phone-bubble-text {
  background: rgba(var(--phone-accent-rgb, 255, 117, 56), 0.18);
  border: 1px solid rgba(var(--phone-accent-rgb, 255, 117, 56), 0.22);
  border-radius: 12px 12px 4px 12px;
  color: #f4f7fb;
}

.phone-bubble-time {
  display: block;
  text-align: right;
  font-size: 0.55rem;
  color: rgba(147, 164, 188, 0.4);
  margin-top: 2px;
  font-family: var(--font-mono, monospace);
}

/* Product cards */
.phone-product-card {
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.phone-product-emoji {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.phone-product-info {
  flex: 1 1;
  min-width: 0;
}
.phone-product-info strong {
  display: block;
  font-size: 0.72rem;
  color: #f4f7fb;
  margin-bottom: 1px;
}
.phone-product-info small {
  display: block;
  font-size: 0.6rem;
  color: rgba(147, 164, 188, 0.6);
  line-height: 1.3;
}
.phone-product-price {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--phone-accent, #ff7538);
  margin-top: 3px;
}

/* Order card */
.phone-order-card {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(52, 211, 153, 0.06);
  border: 1px solid rgba(52, 211, 153, 0.15);
}
.phone-order-icon {
  font-size: 14px;
  margin-bottom: 4px;
}
.phone-order-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.phone-order-line {
  font-size: 0.65rem;
  color: rgba(200, 220, 255, 0.8);
}
.phone-order-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 4px 0;
}
.phone-order-total strong {
  font-size: 0.78rem;
  color: #34d399;
}

/* Quick replies */
.phone-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}
.phone-quick-btn {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 16px;
  border: 1px solid rgba(var(--phone-accent-rgb, 255, 117, 56), 0.35);
  background: rgba(var(--phone-accent-rgb, 255, 117, 56), 0.08);
  color: var(--phone-accent, #ff7538);
  cursor: default;
  transition: background 150ms;
}

/* Input bar */
.phone-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #0f1724;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.phone-input-field {
  flex: 1 1;
  padding: 7px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.7rem;
  color: rgba(147, 164, 188, 0.4);
}

/* Value props (right side) */
.phone-demo-value {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 380px;
}
.phone-demo-value-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 180ms, border-color 180ms;
}
.phone-demo-value-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}
.phone-demo-value-icon {
  font-size: 22px !important;
  flex-shrink: 0;
  margin-top: 2px;
}
.phone-demo-value-card strong {
  display: block;
  font-size: 0.9rem;
  color: #f4f7fb;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  margin-bottom: 4px;
}
.phone-demo-value-card p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(147, 164, 188, 0.8);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .phone-demo-layout {
    flex-direction: column;
    gap: 32px;
  }
  .phone-demo-value {
    max-width: 100%;
  }
  .phone-demo-tabs {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 20px;
  }
  .phone-demo-tab {
    white-space: nowrap;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   LANDING POLISH PASS — scroll reveal, glow effects, card upgrades
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Scroll Reveal (CSS-only via IntersectionObserver alternative) ─────── */
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes reveal-scale {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* Section headers */
.landing-section-header {
  animation: reveal-up 700ms ease both;
}

/* Industry cards — staggered entrance */
.landing-industry-card {
  animation: reveal-up 500ms ease both;
}
.landing-industry-card:nth-child(1) { animation-delay: 0.05s; }
.landing-industry-card:nth-child(2) { animation-delay: 0.1s; }
.landing-industry-card:nth-child(3) { animation-delay: 0.15s; }
.landing-industry-card:nth-child(4) { animation-delay: 0.2s; }
.landing-industry-card:nth-child(5) { animation-delay: 0.25s; }
.landing-industry-card:nth-child(6) { animation-delay: 0.3s; }
.landing-industry-card:nth-child(7) { animation-delay: 0.35s; }
.landing-industry-card:nth-child(8) { animation-delay: 0.4s; }
.landing-industry-card:nth-child(9) { animation-delay: 0.45s; }

/* Industry card icon pulse on hover */
.landing-industry-card:hover .landing-industry-icon-wrap {
  transform: scale(1.1);
  transition: transform 250ms ease;
}

/* ── TrustStrip enhancement ─────────────────────────────────────────────── */
.landing-counter-strip {
  position: relative;
}
.landing-counter-strip::before,
.landing-counter-strip::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,117,56,0.15), transparent);
}
.landing-counter-strip::before { left: 0; }
.landing-counter-strip::after { right: 0; }

.landing-counter-item {
  animation: reveal-up 600ms ease both;
}
.landing-counter-item:nth-child(2) { animation-delay: 0.15s; }
.landing-counter-item:nth-child(3) { animation-delay: 0.3s; }

/* ── Testimonial card glass + glow ──────────────────────────────────────── */
.landing-testimonial-card {
  position: relative;
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}
.landing-testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 12px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(255,117,56,0.06);
  pointer-events: none;
  line-height: 1;
}
.landing-testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,117,56,0.25);
}

.landing-testimonial-badge {
  position: relative;
  overflow: hidden;
}
.landing-testimonial-badge::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* ── DeploymentSteps connectors + animation ─────────────────────────────── */
.landing-deploy-grid {
  position: relative;
}

.landing-deploy-card {
  position: relative;
  animation: reveal-up 500ms ease both;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}
.landing-deploy-card:nth-child(1) { animation-delay: 0.1s; }
.landing-deploy-card:nth-child(2) { animation-delay: 0.25s; }
.landing-deploy-card:nth-child(3) { animation-delay: 0.4s; }
.landing-deploy-card:nth-child(4) { animation-delay: 0.55s; }

.landing-deploy-card:hover {
  transform: translateY(-3px);
}

/* Connector arrows between cards */
.landing-deploy-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255,117,56,0.25);
  border-bottom: 2px solid rgba(255,117,56,0.25);
  transform: translateY(-50%) rotate(-45deg);
  z-index: 2;
}

/* OS LIVE card dramatic glow */
.landing-deploy-card--live {
  animation: reveal-scale 600ms ease 0.6s both;
}
.landing-deploy-card--live::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(52,211,153,0.15), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── Pricing card dramatic upgrade ──────────────────────────────────────── */
.landing-pricing-card {
  animation: reveal-up 500ms ease both;
  transition: border-color 420ms ease, box-shadow 420ms ease;
}
.landing-pricing-card:first-child { animation-delay: 0.1s; }
.landing-pricing-card:last-child { animation-delay: 0.2s; }

.landing-pricing-card-wrap:hover .landing-pricing-card {
  box-shadow: 0 20px 56px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.1);
}
.landing-pricing-card-wrap:hover .landing-pricing-card--highlight {
  box-shadow: 0 0 0 1px rgba(255,117,56,0.35), 0 24px 64px rgba(255,117,56,0.22), 0 0 80px rgba(255,117,56,0.08);
}

/* Pro card glow border */
.landing-pricing-card--highlight {
  position: relative;
}

/* MÁS POPULAR badge pulse */
.landing-pricing-badge {
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(255,117,56,0.2); }
  50% { box-shadow: 0 2px 16px rgba(255,117,56,0.4), 0 0 0 4px rgba(255,117,56,0.06); }
}


/* ── SignupCTA dramatic upgrade ─────────────────────────────────────────── */
.landing-cta--gradient {
  position: relative;
  overflow: hidden;
}

/* Radial glow orb behind CTA */
.landing-cta--gradient::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,117,56,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: cta-orb-pulse 4s ease-in-out infinite;
}
@keyframes cta-orb-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* CTA button glow upgrade */
.landing-cta .landing-btn-accent-lg--hero {
  position: relative;
  overflow: hidden;
}
.landing-cta .landing-btn-accent-lg--hero::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: cta-shine 3s ease-in-out infinite 1s;
}
@keyframes cta-shine {
  0% { left: -100%; }
  40%, 100% { left: 100%; }
}

/* ── Feature panel shimmer on edge ──────────────────────────────────────── */
.landing-feature-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,117,56,0.2), rgba(96,165,250,0.15), transparent);
  z-index: 3;
  animation: panel-shimmer 6s ease-in-out infinite;
}
@keyframes panel-shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ── Phone frame premium effects ────────────────────────────────────────── */
.phone-frame {
  animation: reveal-up 600ms ease both;
}

.phone-demo-value-card {
  animation: reveal-up 400ms ease both;
}
.phone-demo-value-card:nth-child(1) { animation-delay: 0.1s; }
.phone-demo-value-card:nth-child(2) { animation-delay: 0.2s; }
.phone-demo-value-card:nth-child(3) { animation-delay: 0.3s; }
.phone-demo-value-card:nth-child(4) { animation-delay: 0.4s; }

/* ── Nav link hover glow ────────────────────────────────────────────────── */
.landing-nav-links a {
  transition: color 200ms ease, text-shadow 200ms ease;
}
.landing-nav-links a:hover {
  text-shadow: 0 0 12px rgba(255,117,56,0.3);
}

/* ── Reportes: Area chart ───────────────────────────────────────────────── */
.km-area-chart {
  width: 100%; height: 60px; display: block; overflow: visible;
  margin-bottom: 2px;
}
.km-area-x-axis {
  display: flex; justify-content: space-between;
  padding: 0 2px;
}
.km-area-x-axis span {
  font-size: 0.45rem; color: rgba(147,164,188,0.35);
  font-family: var(--font-mono, monospace);
}

/* ── Reportes: Staff leaderboard ─────────────────────────────────────────── */
.km-staff-list { display: flex; flex-direction: column; gap: 5px; }
.km-staff-row {
  display: flex; align-items: center; gap: 5px;
}
.km-staff-info { flex-shrink: 0; width: 52px; }
.km-staff-info strong { display: block; font-size: 0.52rem; color: #f4f7fb; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.km-staff-info small { font-size: 0.44rem; color: rgba(147,164,188,0.45); }
.km-staff-bar-track {
  flex: 1 1; height: 4px; background: rgba(255,255,255,0.06);
  border-radius: 2px; overflow: hidden;
}
.km-staff-bar-fill {
  height: 100%; border-radius: 2px;
  width: var(--bar-w);
  animation: km-bar-grow-horiz 800ms cubic-bezier(0.25,0.46,0.45,0.94) both;
}
.km-staff-score { flex-shrink: 0; text-align: right; }
.km-staff-score strong { display: block; font-size: 0.58rem; }
.km-staff-score small { font-size: 0.44rem; color: rgba(147,164,188,0.5); }

/* ── Reportes: NPS gauge ─────────────────────────────────────────────────── */
.km-nps-row { display: flex; align-items: center; gap: 8px; padding-top: 2px; }
.km-nps-gauge { width: 64px; flex-shrink: 0; }
.km-nps-breakdown { flex: 1 1; display: flex; flex-direction: column; gap: 4px; }
.km-nps-item { display: flex; align-items: center; gap: 4px; }

/* ── Vertical Platform Demo (vpd-*) ─────────────────────────────────────── */
.vpd-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}
.vpd-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 12px; font-weight: 600;
  color: rgba(195,215,255,0.65);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body, Inter, sans-serif);
}
.vpd-pill .material-symbols-outlined { font-size: 15px !important; }
.vpd-pill:hover { background: rgba(255,255,255,0.09); color: #fff; }
.vpd-pill--active {
  background: color-mix(in srgb, var(--vpd-c, #a855f7) 16%, transparent);
  border-color: color-mix(in srgb, var(--vpd-c, #a855f7) 45%, transparent);
  color: var(--vpd-c, #a855f7);
}
.vpd-demo {
  display: flex;
  align-items: center;
  gap: 56px;
  justify-content: center;
}
.vpd-phone-wrap {
  position: relative;
  flex-shrink: 0;
}
.vpd-phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 220px 140px at center, color-mix(in srgb, var(--vpd-c, #a855f7) 18%, transparent), transparent);
  pointer-events: none;
  border-radius: 50%;
  animation: vpd-breathe 3s ease-in-out infinite;
}
@keyframes vpd-breathe {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}
.vpd-phone {
  width: 268px;
  background: rgba(6,8,20,0.95);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.04), 0 32px 80px rgba(0,0,0,0.6);
  height: 540px;
}
.vpd-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 22px;
  background: rgba(6,8,20,0.95);
  border-radius: 0 0 14px 14px;
  z-index: 10;
}
.vpd-screen {
  height: 100%;
  overflow-y: auto;
  position: relative;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 46%),
    linear-gradient(180deg, #07101b 0%, #03060d 100%);
  scrollbar-width: none;
}
.vpd-screen-inner {
  position: relative;
  min-height: 100%;
}
.vpd-asset-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}
.vpd-asset-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  background: transparent;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.vpd-screen-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 84px;
  pointer-events: none;
  background: linear-gradient(to top, rgba(3,6,13,0.96), rgba(3,6,13,0));
}
.vpd-screen-meta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #f4f7fb;
  pointer-events: none;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.vpd-screen-meta span {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(195,215,255,0.66);
}
.vpd-screen-meta strong {
  font-size: 11px;
  font-weight: 700;
  color: var(--vpd-c, #fff);
}
.vpd-asset-fallback {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
  color: rgba(244,247,251,0.92);
}
.vpd-asset-fallback .material-symbols-outlined {
  font-size: 36px;
  color: var(--vpd-c, #a855f7);
}
.vpd-asset-fallback strong {
  font-size: 14px;
  font-weight: 700;
}
.vpd-asset-fallback p {
  margin: 0;
  color: rgba(195,215,255,0.72);
  font-size: 12px;
  line-height: 1.5;
}
.vpd-screen::-webkit-scrollbar {
  display: none;
}
.vpd-info {
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vpd-info-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: color-mix(in srgb, var(--vpd-c, #a855f7) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--vpd-c, #a855f7) 30%, transparent);
  color: var(--vpd-c, #a855f7);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  width: -moz-fit-content;
  width: fit-content;
}
.vpd-info-badge .material-symbols-outlined { font-size: 15px !important; }
.vpd-info-title {
  font-size: 22px; font-weight: 700; color: #fff;
  line-height: 1.25; margin: 0;
  font-family: var(--font-heading, Montserrat, sans-serif);
}
.vpd-info-copy {
  margin: -4px 0 0;
  color: rgba(195,215,255,0.72);
  font-size: 14px;
  line-height: 1.6;
}
.vpd-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.vpd-feature {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(195,215,255,0.82); font-size: 14px; line-height: 1.5;
}
.vpd-check { font-weight: 800; font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.vpd-metric {
  display: inline-flex; align-items: center; gap: 8px;
  background: color-mix(in srgb, var(--vpd-c, #a855f7) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--vpd-c, #a855f7) 28%, transparent);
  border-radius: 100px; padding: 6px 16px;
  color: var(--vpd-c, #a855f7); font-weight: 700; font-size: 13px;
  width: -moz-fit-content;
  width: fit-content;
}
.vpd-cta {
  display: inline-block; padding: 14px 24px;
  border-radius: 12px; color: #fff;
  font-weight: 700; font-size: 14px; text-decoration: none;
  font-family: var(--font-heading, Montserrat, sans-serif);
  width: -moz-fit-content;
  width: fit-content;
  transition: filter 0.2s;
}
.vpd-cta:hover { filter: brightness(1.12); }
@media (max-width: 768px) {
  .vpd-demo { flex-direction: column; gap: 32px; }
  .vpd-phone { width: 240px; height: 480px; }
  .vpd-info { align-items: center; text-align: center; max-width: 100%; }
  .vpd-info-badge, .vpd-metric, .vpd-cta { align-self: center; }
  .vpd-feature { text-align: left; }
}

/* ── Footer subtle top border ───────────────────────────────────────────── */
.landing-footer {
  border-top: 1px solid rgba(255,255,255,0.04);
  position: relative;
}
.landing-footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,117,56,0.12), transparent);
}

/* ===================================================================
   WhatsApp Phone Demo — wa-* classes
   Dark theme: bg #111b21, in-bubble #202c33, out-bubble #005c4b
   =================================================================== */

/* Outer chrome frame */
.wa-phone-frame {
  width: 310px;
  border-radius: 36px;
  background: #111b21;
  border: 2px solid rgba(255, 255, 255, 0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 80px rgba(0, 0, 0, 0.7),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  position: relative;
  height: 560px;
}

/* iOS status bar */
.wa-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 18px 3px;
  background: #111b21;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.7);
}
.wa-status-notch {
  width: 80px;
  height: 20px;
  background: #000;
  border-radius: 0 0 14px 14px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.wa-status-icons {
  display: flex;
  gap: 3px;
  align-items: center;
  color: rgba(255, 255, 255, 0.65);
}

/* WhatsApp green header */
.wa-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 8px;
  background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}
.wa-header-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.wa-header-info {
  flex: 1 1;
  min-width: 0;
}
.wa-header-name {
  display: block;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wa-header-status {
  display: block;
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 1px;
}

/* Chat background — dark WA with subtle hex dot pattern */
.wa-chat-bg {
  flex: 1 1;
  background:
    radial-gradient(circle at 15% 15%, rgba(7, 94, 84, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(18, 140, 126, 0.06) 0%, transparent 45%),
    #111b21;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 15% 15%, rgba(7, 94, 84, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(18, 140, 126, 0.06) 0%, transparent 45%);
  background-size: 18px 18px, 100% 100%, 100% 100%;
  padding: 8px 10px 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow-y: auto;
  scrollbar-width: none;
}
.wa-chat-bg::-webkit-scrollbar { display: none; }

/* Date chip */
.wa-date-chip {
  text-align: center;
  font-size: 0.54rem;
  font-weight: 600;
  color: rgba(147, 164, 188, 0.55);
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  padding: 2px 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 5px;
}

/* Bubble wrapper for alignment */
.wa-bubble-wrap {
  display: flex;
  flex-direction: column;
  max-width: 82%;
  gap: 2px;
}
.wa-bubble-wrap--bot { align-self: flex-start; }
.wa-bubble-wrap--user { align-self: flex-end; }

/* Base bubble */
.wa-bubble {
  border-radius: 8px;
  padding: 6px 8px 4px;
  position: relative;
  font-size: 0.68rem;
  line-height: 1.45;
}

/* Incoming bubble — left side, dark gray, pointer on left */
.wa-bubble-in {
  background: #202c33;
  color: rgba(230, 240, 255, 0.92);
  border-radius: 0 8px 8px 8px;
}
.wa-bubble-in::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0;
  border-width: 0 6px 8px 0;
  border-style: solid;
  border-color: transparent #202c33 transparent transparent;
}

/* Outgoing bubble — right side, dark teal, pointer on right */
.wa-bubble-out {
  background: #005c4b;
  color: rgba(230, 245, 240, 0.95);
  border-radius: 8px 0 8px 8px;
  align-self: flex-end;
}
.wa-bubble-out::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 0;
  border-width: 0 0 8px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #005c4b;
}

/* Bubble body text */
.wa-bubble-body {
  word-break: break-word;
}

/* Bubble meta row — timestamp + read receipts */
.wa-bubble-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  margin-top: 2px;
  float: right;
  margin-left: 8px;
}

/* Timestamp */
.wa-time {
  font-size: 0.52rem;
  color: rgba(147, 164, 188, 0.55);
  font-family: var(--font-mono, monospace);
  white-space: nowrap;
}

/* Read receipts — teal double check */
.wa-checks {
  font-size: 0.55rem;
  color: #53bdeb;
  white-space: nowrap;
}

/* Product card inside bubble */
.wa-bubble--product {
  padding: 0;
  overflow: hidden;
}
.wa-product-card {
  display: flex;
  gap: 8px;
  padding: 8px 9px 4px;
  background: inherit;
}
.wa-product-emoji {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.wa-product-info {
  flex: 1 1;
  min-width: 0;
}
.wa-product-info strong {
  display: block;
  font-size: 0.68rem;
  color: #f0f8ff;
  margin-bottom: 2px;
}
.wa-product-info small {
  display: block;
  font-size: 0.56rem;
  color: rgba(147, 164, 188, 0.65);
  line-height: 1.3;
}
.wa-product-price {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #53bdeb;
}

/* Order summary card */
.wa-bubble--order {
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
}
.wa-order-icon {
  font-size: 14px;
  margin-bottom: 4px;
}
.wa-order-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wa-order-line {
  font-size: 0.6rem;
  color: rgba(200, 220, 255, 0.85);
}
.wa-order-divider {
  height: 1px;
  background: rgba(52, 211, 153, 0.2);
  margin: 4px 0;
}
.wa-order-total {
  font-size: 0.7rem;
  font-weight: 700;
  color: #34d399;
}

/* Quick replies / action buttons */
.wa-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}
.wa-quick-replies--in { align-self: flex-start; }
.wa-quick-replies--out { align-self: flex-end; }

.wa-quick-btn {
  font-size: 0.62rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 18px;
  border: 1px solid rgba(83, 189, 235, 0.4);
  background: rgba(83, 189, 235, 0.08);
  color: #53bdeb;
  cursor: default;
  white-space: nowrap;
}

/* Input bar — dark WA style */
.wa-input-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: #1f2c34;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}
.wa-input-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.wa-input-field {
  flex: 1 1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 20px;
  background: #2a3942;
  border: none;
  min-height: 32px;
}
.wa-send-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #00a884;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 168, 132, 0.35);
}

/* Typing indicator — three bouncing dots */
.wa-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background: #202c33;
  border-radius: 0 8px 8px 8px;
  width: -moz-fit-content;
  width: fit-content;
}
.wa-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: wa-dot-bounce 1.2s ease-in-out infinite;
}
.wa-typing span:nth-child(2) { animation-delay: 0.15s; }
.wa-typing span:nth-child(3) { animation-delay: 0.30s; }

@keyframes wa-dot-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%            { transform: translateY(-6px); opacity: 1; }
}

/* ── TYPING INDICATOR DOT (km-typing-dot) ── */
.km-typing-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.7);
  animation: km-typing-bounce 1.2s ease-in-out infinite;
  display: inline-block;
}
@keyframes km-typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%            { transform: translateY(-4px); opacity: 1; }
}

/* ── INBOX ROW ── */
.km-inbox-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  border-left: 2px solid transparent;
  transition: background 150ms;
}
.km-inbox-row:hover { background: rgba(255,255,255,0.03); }
.km-inbox-row--active {
  background: rgba(255,117,56,0.1);
  border-left-color: #ff7538;
}

/* ── km-typing-indicator ── */
.km-typing-indicator {
  display: flex;
  gap: 3px;
  align-items: center;
  background: rgba(255,255,255,0.05);
  padding: 5px 9px;
  border-radius: 0 8px 8px 8px;
}
.km-typing-dot:nth-child(2) { animation-delay: 0.15s; }
.km-typing-dot:nth-child(3) { animation-delay: 0.30s; }

/* ── Inbox layout ── */
.km-inbox-layout {
  display: flex;
  flex: 1 1;
  gap: 0;
  overflow: hidden;
}
.km-conv-list {
  width: 220px;
  min-width: 200px;
  border-right: 1px solid rgba(255,255,255,0.05);
  overflow-y: auto;
  scrollbar-width: none;
  flex-shrink: 0;
}
.km-chat-panel {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.km-chat-bubble-in {
  background: rgba(255,255,255,0.06);
  border-radius: 0 10px 10px 10px;
  padding: 6px 10px;
  max-width: 75%;
  font-size: 0.58rem;
  color: #f4f7fb;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.km-chat-bubble-out {
  background: rgba(255,117,56,0.18);
  border-radius: 10px 0 10px 10px;
  padding: 6px 10px;
  max-width: 75%;
  font-size: 0.58rem;
  color: #f4f7fb;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.km-chat-time {
  font-size: 0.45rem;
  color: rgba(147,164,188,0.5);
  align-self: flex-end;
  margin-top: 1px;
}

/* ── Gauge row / cards ── */
.km-gauge-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.km-gauge-card {
  flex: 1 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.km-gauge-block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Leads KPI row ── */
.km-leads-kpi-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  align-items: center;
}

/* ── Automation canvas ── */
.km-auto-canvas {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 10px;
}
.km-auto-canvas-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.56rem;
  color: rgba(147,164,188,0.7);
  margin-bottom: 8px;
}
.km-flow-nodes {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.km-flow-step-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.km-flow-node {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 110px;
  flex-shrink: 0;
}
.km-flow-arrow {
  padding: 0 2px;
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── POS layout ── */
.km-pos-layout {
  display: flex;
  flex: 1 1;
  gap: 0;
  overflow: hidden;
}
.km-pos-grid {
  flex: 1 1;
  overflow-y: auto;
  scrollbar-width: none;
  padding-right: 8px;
}
.km-pos-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 7px;
  gap: 7px;
}
.km-pos-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 9px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: background 150ms;
}
.km-pos-item:hover { background: rgba(255,255,255,0.06); }
.km-pos-cart {
  width: 180px;
  min-width: 170px;
  border-left: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex-shrink: 0;
}

/* ── SignupCTA — eyebrow, stats, trust ─────────────────────────────────── */
.landing-cta-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(147,164,188,0.75);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.landing-cta-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.landing-cta-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.landing-cta-stat strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: #f4f7fb;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
}
.landing-cta-stat span {
  font-size: 0.72rem;
  color: rgba(147,164,188,0.65);
}
.landing-cta-trust {
  margin-top: 20px;
  font-size: 0.72rem;
  color: rgba(147,164,188,0.5);
  text-align: center;
}

/* ── Wave A: ProductPillars enrichments ────────────────────────────────── */

/* Activity feed (KironAI tab) */
.km-activity-feed {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.km-activity-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  border-radius: 6px;
  background: rgba(255,255,255,0.025);
}
.km-activity-text {
  flex: 1 1;
  font-size: 0.52rem;
  color: rgba(200,220,255,0.75);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.km-activity-time {
  font-size: 0.46rem;
  color: rgba(147,164,188,0.4);
  font-family: var(--font-mono, monospace);
  flex-shrink: 0;
}

/* Error dot */
.km-dot--error {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fb7185;
  display: inline-block;
}

/* AI Quick Replies (Inbox tab) */
.km-quick-replies {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-top: 1px solid rgba(255,117,56,0.08);
  background: rgba(255,117,56,0.03);
  overflow-x: auto;
  scrollbar-width: none;
  flex-shrink: 0;
}
.km-quick-reply-btn {
  white-space: nowrap;
  font-size: 0.5rem;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,117,56,0.25);
  background: rgba(255,117,56,0.08);
  color: rgba(255,165,100,0.9);
  cursor: pointer;
  transition: background 150ms;
}
.km-quick-reply-btn:hover {
  background: rgba(255,117,56,0.16);
}

/* Score bar (Leads tab) */
.km-score-bar-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
}
.km-score-bar-fill {
  height: 3px;
  border-radius: 2px;
  flex: 1 1;
  max-width: 40px;
}

/* Mini funnel (Leads tab) */
.km-mini-funnel-row {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
  padding: 0 4px 6px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.km-mini-funnel-step {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}
.km-mini-funnel-bar {
  width: 100%;
  border-radius: 2px 2px 0 0;
  min-height: 4px;
  transition: height 0.6s ease;
}

/* Execution history (Automatización tab) */
.km-exec-history {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  margin-bottom: 4px;
}
.km-exec-history-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 4px;
}

/* Active flow node */
.km-flow-node--active {
  box-shadow: 0 0 0 1px rgba(52,211,153,0.4), 0 0 12px rgba(52,211,153,0.15);
  animation: node-active-pulse 2s ease-in-out infinite;
}
@keyframes node-active-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(52,211,153,0.4), 0 0 10px rgba(52,211,153,0.12); }
  50%       { box-shadow: 0 0 0 1px rgba(52,211,153,0.7), 0 0 20px rgba(52,211,153,0.28); }
}

/* POS category tabs */
.km-pos-categories {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
  flex-shrink: 0;
}
.km-pos-cat-btn {
  font-size: 0.5rem;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: rgba(147,164,188,0.7);
  cursor: pointer;
  transition: all 150ms;
}
.km-pos-cat-btn--active {
  background: rgba(255,117,56,0.15);
  border-color: rgba(255,117,56,0.35);
  color: #ff7538;
}

/* POS popular badge */
.km-pos-item--popular {
  box-shadow: 0 0 0 1px rgba(255,209,102,0.3);
}
.km-pos-popular-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 10px;
  line-height: 1;
}
.km-pos-item {
  position: relative;
}

/* Order progress (Pedidos tab) */
.km-order-progress {
  height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  margin-top: 3px;
  overflow: hidden;
  width: 100%;
}
.km-order-progress-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 0.8s ease;
}

/* ── Wave B: SocialProof enrichments ──────────────────────────────────── */

/* Impact stats bar */
.sp-impact-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px 0 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.sp-impact-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.sp-impact-stat strong {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ff7538;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  letter-spacing: -0.02em;
}
.sp-impact-stat span {
  font-size: 0.75rem;
  color: rgba(147,164,188,0.65);
}

/* Logo marquee strip */
.sp-logo-strip {
  overflow: hidden;
  margin-bottom: 32px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.sp-logo-track {
  display: flex;
  gap: 12px;
  animation: logo-scroll 28s linear infinite;
  width: max-content;
}
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.sp-logo-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  white-space: nowrap;
  flex-shrink: 0;
}
.sp-logo-icon { font-size: 14px; }
.sp-logo-name { font-size: 0.72rem; color: rgba(200,220,255,0.7); font-weight: 600; }

/* Stars */
.sp-stars {
  font-size: 0.85rem;
  color: #ffd166;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* ── VerticalPlatformDemo multi-screen ────────────────────────────────────── */
.vpd-screen-content {
  flex: 1 1;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  padding: 12px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  color: #f5f7fb;
  background: #07101a;
}
.vpd-screen-content::-webkit-scrollbar { display: none; }

/* Multi-screen dot navigation — inside phone frame */
.vpd-screen-nav {
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 12;
  pointer-events: none;
}
.vpd-screen-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 9px;
  background-clip: content-box;
  flex-shrink: 0;
  pointer-events: auto;
  transition: all 0.25s ease;
  min-width: 24px;
  min-height: 24px;
}
.vpd-screen-dot--active {
  width: 18px;
  border-radius: 3px;
  background: var(--vpd-c, #ff7538);
}
.vpd-tap-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: rgba(147, 164, 188, 0.7);
  margin-bottom: 8px;
  font-weight: 500;
}
.vpd-tap-hint .material-symbols-outlined {
  font-size: 15px;
  color: inherit;
}

/* Screen-aware info panel */
.vpd-info-screen-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.vpd-info-screen-count {
  margin-left: auto;
  font-size: 0.65rem;
  color: var(--os-muted, #93a4bc);
  font-weight: 400;
  letter-spacing: 0;
}
.vpd-info-insight {
  font-size: 0.78rem;
  color: var(--os-muted, #93a4bc);
  line-height: 1.5;
  margin: 0 0 12px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border-left: 2px solid rgba(255,255,255,0.1);
}

/* vpd-screen-inner: original definition at line ~3690, not overridden here */

/* Vertical screen cards */
.vs-card {
  background: #0d1724;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
}
.vs-eyebrow {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9eb0c7;
  margin-bottom: 6px;
}
.vs-title {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #f5f7fb;
}
.vs-muted {
  font-size: 11px;
  color: #9eb0c7;
  line-height: 1.4;
  margin: 0;
}
.vs-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 8px;
  gap: 8px;
}
.vs-product {
  background: linear-gradient(180deg, #121d2d, #0d1724);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 10px;
}
.vs-product strong { display: block; font-size: 11px; font-weight: 600; margin-bottom: 3px; }
.vs-product .vs-muted { font-size: 10px; }
.vs-price { margin-top: 6px; font-weight: 700; font-size: 12px; }
.vs-progress-wrap {
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
  margin: 10px 0 6px;
}
.vs-progress-bar {
  height: 100%;
  border-radius: 999px;
}
.vs-step-row {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-top: 8px;
}
.vs-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 9px;
  flex: 1 1;
  color: #9eb0c7;
}
.vs-step-item--done { color: #34d399; }
.vs-step-item--active { font-weight: 700; }
.vs-step-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.vs-step-dot--done { background: #34d399; }
.vs-step-dot--active { background: currentColor; }
.vs-bubble-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.vs-bubble {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,117,56,0.14);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.vs-cta {
  display: block;
  text-align: center;
  padding: 11px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  text-decoration: none;
}
.vs-cta--ghost {
  background: rgba(255,255,255,0.06) !important;
  color: #f5f7fb;
  border: 1px solid rgba(255,255,255,0.1);
}
.vs-stat-row {
  display: flex;
  gap: 6px;
}
.vs-stat {
  flex: 1 1;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 8px;
  text-align: center;
}
.vs-stat strong { display: block; font-size: 13px; font-weight: 700; }
.vs-stat span { font-size: 9px; color: #9eb0c7; }
.vs-check { color: #34d399; }
.vs-warn { color: #fbbf24; }
.vs-timeline { list-style: none; padding: 0; margin: 0; }
.vs-timeline li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 11px;
  padding: 5px 0;
  color: #9eb0c7;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.vs-timeline li:last-child { border-bottom: none; }
.vs-timeline li.done { color: #f5f7fb; }
.vs-timeline li.active { color: #f5f7fb; font-weight: 600; }
.vs-avatar-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}
.vs-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #f5f7fb;
}
.vs-pill-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vs-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  font-size: 11px;
}
.vs-qr-placeholder {
  display: grid;
  place-items: center;
  font-size: 42px;
  height: 70px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px dashed rgba(255,255,255,0.1);
  margin-bottom: 8px;
}
.vs-map-placeholder {
  display: grid;
  place-items: center;
  height: 80px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px dashed currentColor;
  font-size: 11px;
  margin: 8px 0;
  color: inherit;
  opacity: 0.7;
}
.vs-rail {
  display: flex;
  gap: 8px;
  overflow: hidden;
}
.vs-mini {
  min-width: 100px;
  padding: 8px;
  border-radius: 12px;
  background: #0e1825;
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 10px;
}
.vs-mini strong { display: block; font-size: 10px; font-weight: 700; margin-bottom: 3px; }
.vs-history-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vs-history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 11px;
}
.vs-match-score {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

/* ── Stitch Alignment — active state reinforcement ──────────────────────── */
.km-sidebar-item--active {
  background: rgba(255,117,56,0.14);
  color: #ff7538;
}

/* ── Stitch Topbar — Montserrat title + notif badge ─────────────────────── */
.km-topbar-title--montserrat {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.km-topbar-notif-wrap {
  position: relative;
  display: inline-flex;
}
.km-topbar-notif-badge {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  border: 1px solid #05070c;
}

/* ── Stitch KPI ghost icons ──────────────────────────────────────────────── */
.km-ghost-icon {
  position: absolute;
  bottom: -10px;
  right: -10px;
  pointer-events: none;
  overflow: hidden;
}
.km-ghost-icon .material-symbols-outlined {
  font-size: 64px;
  opacity: 0.08;
  color: #f4f7fb;
  line-height: 1;
  display: block;
}

/* ── Stitch nudge card style ─────────────────────────────────────────────── */
.km-nudge-card {
  background: linear-gradient(135deg, #0d121c, #11181f) !important;
  border-top: 2px solid #ff7538 !important;
}
.km-ai-rec-card--warn.km-nudge-card {
  border-top-color: #fbbf24 !important;
}

/* ── Stitch proof chips ──────────────────────────────────────────────────── */
.km-proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}
.km-proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  background: #11181f;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #93a4bc;
}
.km-proof-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.km-proof-dot--ok  { background: #34d399; box-shadow: 0 0 4px rgba(52,211,153,0.5); }
.km-proof-dot--warn { background: #fbbf24; }
.km-proof-dot--err  { background: #ef4444; }

/* ── KPI card — ensure relative for ghost icon positioning ──────────────── */
.km-kpi-card {
  position: relative;
}
.km-ai-rec-card {
  position: relative;
  overflow: hidden;
  flex-direction: column;
}

/* ===================================================================
   LOGO BAR — Improvement 1
   =================================================================== */

@keyframes logo-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-bar-section {
  padding: 32px 0 24px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.logo-bar-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 20px;
  font-family: var(--font-body, 'Manrope', sans-serif);
}

.logo-bar-track-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.logo-bar-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: logo-marquee 32s linear infinite;
}

.logo-bar-track:hover {
  animation-play-state: paused;
}

.logo-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 36px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-bar-item:hover {
  color: rgba(255, 255, 255, 1);
}

.logo-bar-wordmark {
  width: 140px;
  height: 32px;
  flex-shrink: 0;
}

.logo-bar-tag {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  font-family: var(--font-body, 'Manrope', sans-serif);
}

/* ===================================================================
   HERO CTA DISCLAIMER — Improvement 2
   =================================================================== */

.landing-hero-cta-disclaimer {
  margin-top: 12px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-body, 'Manrope', sans-serif);
  letter-spacing: 0.01em;
}

/* ===================================================================
   VIDEO DEMO — Improvement 3
   =================================================================== */

.vdemo-section {
  padding: 96px 24px;
  background: var(--os-bg, #0d0d0d);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vdemo-inner {
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.vdemo-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--os-accent, #ff7538);
  margin-bottom: 12px;
  font-family: var(--font-body, 'Manrope', sans-serif);
}

.vdemo-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 10px;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  text-align: center;
}

.vdemo-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 36px;
  font-family: var(--font-body, 'Manrope', sans-serif);
}

.vdemo-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  position: relative;
  transition: border-color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vdemo-container:hover {
  border-color: rgba(255, 117, 56, 0.4);
  box-shadow: 0 0 48px rgba(255, 117, 56, 0.15);
}

.vdemo-container:focus-visible {
  outline: 2px solid var(--os-accent, #ff7538);
  outline-offset: 4px;
}

.vdemo-thumbnail {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f1923 0%, #1a0a0a 50%, #0d0d0d 100%);
  background-image: url('/mocks/landing/hero-demo-thumbnail.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vdemo-thumbnail::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.vdemo-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--os-accent, #ff7538);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 12px rgba(255, 117, 56, 0.2), 0 0 40px rgba(255, 117, 56, 0.4);
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vdemo-container:hover .vdemo-play-btn {
  transform: scale(1.08);
  box-shadow: 0 0 0 16px rgba(255, 117, 56, 0.15), 0 0 60px rgba(255, 117, 56, 0.5);
}

.vdemo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  justify-content: center;
}

.vdemo-pill {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body, 'Manrope', sans-serif);
  letter-spacing: 0.01em;
}

.vdemo-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 24px;
}

.vdemo-modal-inner {
  width: 100%;
  max-width: 900px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
}

.vdemo-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.vdemo-modal-close:hover {
  background: rgba(255, 117, 56, 0.3);
}

.vdemo-modal-embed {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.vdemo-modal-embed iframe,
.vdemo-modal-embed video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  background: #0a0612;
}

/* ===================================================================
   ROI METRICS IN TESTIMONIALS — Improvement 4
   =================================================================== */

.sp-roi-metric {
  font-size: 1.75rem;
  font-weight: 900;
  font-family: var(--font-heading, 'Montserrat', sans-serif);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.sp-roi-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  font-family: var(--font-body, 'Manrope', sans-serif);
  margin-bottom: 12px;
}

/* ===================================================================
   PRICING TOGGLE — Improvement 5
   =================================================================== */

.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 40px;
  width: -moz-fit-content;
  width: fit-content;
}

.pricing-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-body, 'Manrope', sans-serif);
  cursor: pointer;
  transition: background 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}

.pricing-toggle-btn--active {
  background: var(--os-accent, #ff7538);
  color: #fff;
}

.pricing-toggle-badge {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-toggle-btn--active .pricing-toggle-badge {
  background: rgba(0, 0, 0, 0.2);
}

.pricing-savings-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-body, 'Manrope', sans-serif);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.pricing-annual-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-body, 'Manrope', sans-serif);
  margin: 0 0 8px;
}

