/* ==========================================================================
   IGNITE TECHNOLOGY GROUP - PRISM FRAMER LAYOUT & BENTO GRID
   Clean spacing, bento layouts, neon borders, and smooth modern flow
   ========================================================================== */

/* --------------------------------------------------------------------------
   SANJAYA FRAMER SIGNATURE HERO SECTION (https://sanjaya.framer.ai/)
   Full-screen cinematic hero, background video, 4-corner balanced grid:
   Top-left services monospace list, top-right narrative paragraph,
   Bottom-left badge + bold 3-word title, and bottom-right Clarissa consultation card
   -------------------------------------------------------------------------- */
.sanjaya-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 24px 60px;
  overflow: hidden;
  background-color: #05070f;
}

/* Background Looping AI Agent Video & Ambient Depth */
.sanjaya-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  background-color: #05070f;
}

.sanjaya-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
  opacity: 0.92;
  filter: contrast(1.08) brightness(1.04);
}

/* Vibrant Ambient Color Tone Glow (Cyan, Purple, Blue, Amber Accents) */
.sanjaya-hero-spectrum {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 75% 35%, rgba(6, 182, 212, 0.32) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 70%, rgba(147, 51, 234, 0.28) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 85%, rgba(37, 99, 235, 0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 25%, rgba(245, 158, 11, 0.15) 0%, transparent 45%);
  mix-blend-mode: screen;
  opacity: 0.85;
  pointer-events: none;
}

/* Subtle Cinematic Contrast Overlay (Keeps AI Agent Video Clear & Crisp) */
.sanjaya-hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 60% 45%, rgba(5, 7, 15, 0.05) 0%, rgba(5, 7, 15, 0.45) 70%, rgba(5, 7, 15, 0.82) 100%),
    linear-gradient(
      180deg,
      rgba(5, 7, 15, 0.72) 0%,
      transparent 18%,
      transparent 68%,
      rgba(5, 7, 15, 0.88) 100%
    );
  pointer-events: none;
}

/* 4-Corner Balanced Hero Grid Container */
.sanjaya-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

/* ---------------- Upper Row ---------------- */
.sanjaya-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 24px;
  padding-top: 18px;
}

/* Top Left Services Monospace List */
.sanjaya-hero-services {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sanjaya-service-tag {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  transition: color 0.25s ease, transform 0.25s ease;
  cursor: default;
  display: inline-flex;
  align-items: center;
}

.sanjaya-service-tag:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.sanjaya-service-tag .tag-accent {
  font-weight: 700;
  margin-right: 6px;
  display: inline-block;
}

.sanjaya-service-tag .tag-accent.amber {
  color: var(--color-amber);
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

.sanjaya-service-tag .tag-accent.purple {
  color: var(--color-purple-light);
  text-shadow: 0 0 10px rgba(147, 51, 234, 0.6);
}

.sanjaya-service-tag .tag-accent.blue {
  color: var(--color-blue-light);
  text-shadow: 0 0 10px rgba(37, 99, 235, 0.6);
}

.sanjaya-service-tag .tag-accent.teal {
  color: var(--color-teal);
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.6);
}

/* Top Right Narrative Paragraph */
.sanjaya-hero-narrative {
  max-width: 440px;
  text-align: left;
}

.sanjaya-hero-narrative p {
  font-family: var(--font-body, 'Geist', sans-serif);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.025em;
  color: rgba(248, 250, 252, 0.92);
  margin: 0;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ---------------- Lower Row ---------------- */
.sanjaya-hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  gap: 36px;
  padding-bottom: 24px;
}

/* Bottom Left Headline & Badge */
.sanjaya-hero-heading-block {
  max-width: 580px;
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 5;
}

.sanjaya-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(8, 8, 12, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sanjaya-hero-badge span {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.sanjaya-hero-title {
  font-family: var(--font-heading, 'Geist', sans-serif);
  font-size: clamp(46px, 5.8vw, 60px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.045em;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.text-spectrum-glow {
  background: linear-gradient(135deg, #fbbf24 0%, #c084fc 35%, #60a5fa 70%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  filter: drop-shadow(0 0 35px rgba(6, 182, 212, 0.4));
}

/* ==========================================================================
   3D AGENTIC INTERACTION STAGE (Hero Right Perspective Showcase)
   Recreates the Connex.ai 3D Node Tree + Conversational Video Demo
   ========================================================================== */
.hero-agentic-stage {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 480px;
  perspective: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  flex-shrink: 0;
}

/* Ambient Radial Aura behind the 3D Stage (from user screenshot) */
.stage-ambient-glow {
  position: absolute;
  width: 540px;
  height: 540px;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.32) 0%,
    rgba(6, 182, 212, 0.24) 35%,
    rgba(147, 51, 234, 0.12) 60%,
    transparent 72%
  );
  filter: blur(45px);
  pointer-events: none;
  z-index: 0;
}

/* Stage Cards Shared Structure */
.stage-card {
  position: absolute;
  border-radius: 14px;
  background: rgba(10, 14, 23, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.88),
    0 0 40px rgba(6, 182, 212, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}

/* Left 3D Layer: Agent Node Orchestrator Canvas */
.stage-canvas-card {
  width: 390px;
  height: 310px;
  left: 0;
  top: 30px;
  transform: rotateY(16deg) rotateX(2deg) translateZ(-40px);
  transform-origin: center right;
  z-index: 1;
  opacity: 0.94;
}

.hero-agentic-stage:hover .stage-canvas-card {
  transform: rotateY(7deg) rotateX(1deg) translateZ(-15px);
  opacity: 1;
  border-color: rgba(6, 182, 212, 0.4);
}

.stage-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(4, 6, 14, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stage-badge-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stage-badge-text {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #e2e8f0;
}

.stage-tag-sub {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 10px;
  color: var(--color-emerald);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.stage-canvas-media {
  position: relative;
  width: 100%;
  height: calc(100% - 37px);
  overflow: hidden;
  background: #02040a;
}

.stage-canvas-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 45%;
  display: block;
  filter: contrast(1.12) brightness(0.96);
  transition: transform 0.4s ease;
}

.hero-agentic-stage:hover .stage-canvas-img {
  transform: scale(1.03);
}

/* Pulsing Agent Node Indicators on Canvas */
.node-ping-point {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-emerald);
  box-shadow: 0 0 12px var(--color-emerald);
  pointer-events: none;
}

.node-ping-point::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--color-emerald);
  animation: pingPulse 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.node-ping-point.node-ellie {
  top: 24%;
  left: 48%;
}

.node-ping-point.node-janine {
  top: 52%;
  left: 32%;
  background: #f43f5e;
  box-shadow: 0 0 12px #f43f5e;
}
.node-ping-point.node-janine::after {
  border-color: #f43f5e;
}

.node-ping-point.node-http {
  top: 76%;
  left: 42%;
  background: #a855f7;
  box-shadow: 0 0 12px #a855f7;
}
.node-ping-point.node-http::after {
  border-color: #a855f7;
}

@keyframes pingPulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Right 3D Layer: Live Conversational Agent Chat Widget */
.stage-chat-card {
  width: 320px;
  height: 460px;
  right: 10px;
  top: 10px;
  transform: rotateY(-10deg) rotateX(1deg) translateZ(35px);
  transform-origin: center left;
  z-index: 2;
  display: flex;
  flex-direction: column;
  background: rgba(8, 12, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 
    0 30px 65px -10px rgba(0, 0, 0, 0.95),
    0 0 45px rgba(16, 185, 129, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero-agentic-stage:hover .stage-chat-card {
  transform: rotateY(-2deg) rotateX(0deg) translateZ(50px);
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 
    0 38px 75px -10px rgba(0, 0, 0, 0.98),
    0 0 55px rgba(16, 185, 129, 0.38);
}

.stage-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(6, 9, 16, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stage-chat-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stage-chat-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.stage-chat-meta {
  display: flex;
  flex-direction: column;
}

.stage-chat-name {
  font-family: var(--font-body, 'Geist', sans-serif);
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.stage-chat-status {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 10px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.stage-chat-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stage-ctrl-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.stage-ctrl-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

/* Chat Video Container */
.stage-chat-video-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #000000;
}

.stage-agent-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  display: block;
}

/* Chat Footer / Live Input Simulation & Clarissa Consultation Dock */
.stage-chat-footer {
  padding: 8px 12px 10px;
  background: rgba(6, 9, 16, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stage-chat-input-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 6px 10px;
}

.stage-chat-input-preview span {
  font-family: var(--font-body, 'Geist', sans-serif);
  font-size: 11px;
  color: #94a3b8;
}

.stage-send-btn {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: var(--color-emerald);
  color: #03050b;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.stage-send-btn:hover {
  opacity: 0.85;
}

.stage-clarissa-dock {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all 0.2s ease;
}

.stage-clarissa-dock:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.4);
}

.clarissa-avatar-mini {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(6, 182, 212, 0.4);
}

.clarissa-avatar-mini video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.clarissa-dock-info {
  display: flex;
  flex-direction: column;
}

.clarissa-dock-title {
  font-family: var(--font-body, 'Geist', sans-serif);
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
}

.clarissa-dock-link {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 10px;
  color: var(--color-cyan);
}

/* Bottom Right Floating Consultation Card (Sanjaya Clarissa Card) */
.sanjaya-consult-card {
  background: rgba(8, 8, 12, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75), 0 0 30px rgba(37, 99, 235, 0.22);
  min-width: 320px;
  max-width: 380px;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s ease,
              box-shadow 0.25s ease;
}

.sanjaya-consult-card:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 182, 212, 0.45);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.85), 0 0 35px rgba(6, 182, 212, 0.35);
}

.sanjaya-consult-avatar {
  width: 60px;
  height: 70px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #010004;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.sanjaya-consult-avatar video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sanjaya-consult-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.sanjaya-consult-name {
  font-family: var(--font-body, 'Geist', sans-serif);
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.sanjaya-consult-role {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 11px;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
  margin-bottom: 8px;
}

.sanjaya-consult-btn {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  color: #03050b;
  font-family: var(--font-body, 'Geist', sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 8px;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: background-color 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.2s ease;
}

.sanjaya-consult-btn:hover {
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.35);
}

.sanjaya-consult-btn .btn-arrow {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.sanjaya-consult-btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* Metrics Section transition */
.metrics-section {
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 2;
}

/* Mobile Responsiveness for Sanjaya Hero */
@media (max-width: 960px) {
  .sanjaya-hero-section {
    height: auto;
    min-height: 100vh;
    padding: 100px 20px 60px;
    justify-content: flex-start;
  }

  .sanjaya-hero-top {
    flex-direction: column;
    gap: 24px;
    padding-top: 10px;
    margin-bottom: 48px;
  }

  .sanjaya-hero-narrative {
    max-width: 100%;
  }

  .sanjaya-hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
    margin-top: auto;
  }

  .sanjaya-consult-card {
    width: 100%;
    max-width: 100%;
    min-width: unset;
  }

  .sanjaya-hero-title {
    font-size: 42px;
  }
}

/* --------------------------------------------------------------------------
   HERO SECTION (PRISM FRAMER STYLE)
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 9rem;
  padding-bottom: 5.5rem;
  position: relative;
  text-align: center;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--text-highlight);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(14px);
}

.hero-pill-badge .star-pill {
  color: var(--color-amber);
  font-weight: 700;
}

.hero-title {
  max-width: 980px;
  margin: 0 auto 1.25rem auto;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 2.25rem auto;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   HERO INTERACTIVE BENTO CARD
   -------------------------------------------------------------------------- */
.hero-bento-visual {
  max-width: 940px;
  margin: 0 auto;
  background: rgba(10, 14, 24, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.75), 0 0 50px rgba(147, 51, 234, 0.2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  text-align: left;
}

.bento-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  background: rgba(6, 8, 15, 0.85);
  border-bottom: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.bento-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}
.bento-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.bento-dot.red { background: #ef4444; }
.bento-dot.yellow { background: #f59e0b; }
.bento-dot.green { background: #10b981; }

.bento-channel-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(8, 12, 22, 0.65);
}

.bento-tab-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.bento-tab-btn:hover {
  color: var(--text-white);
}

.bento-tab-btn.active {
  color: var(--text-white);
  border-bottom-color: var(--color-teal);
  background: rgba(6, 182, 212, 0.08);
}

.bento-screen-content {
  padding: 1.75rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-chat-thread {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.chat-msg-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  font-weight: 600;
}

.msg-avatar.user {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.msg-avatar.ai {
  background: var(--gradient-primary-btn);
  color: #fff;
  box-shadow: 0 0 12px rgba(147, 51, 234, 0.5);
}

.chat-msg-bubble {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  color: var(--text-highlight);
  line-height: 1.5;
}

.chat-msg-bubble.ai {
  background: rgba(20, 28, 48, 0.75);
  border-color: rgba(168, 85, 247, 0.35);
}

.bento-bottom-bar {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* --------------------------------------------------------------------------
   METRICS BAR UNDER HERO (PRISM STYLE)
   -------------------------------------------------------------------------- */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.metric-pill-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all var(--transition-smooth);
}

.metric-pill-box:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.metric-number-bold {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.metric-sublabel {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   THE FOUR PILLARS BENTO GRID
   -------------------------------------------------------------------------- */
.pillars-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pillar-bento-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pillar-icon-capsule {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.pillar-icon-capsule.blue { background: rgba(37, 99, 235, 0.15); border: 1px solid rgba(56, 189, 248, 0.35); color: #38bdf8; }
.pillar-icon-capsule.purple { background: rgba(147, 51, 234, 0.15); border: 1px solid rgba(192, 132, 252, 0.35); color: #c084fc; }
.pillar-icon-capsule.teal { background: rgba(6, 182, 212, 0.15); border: 1px solid rgba(34, 211, 238, 0.35); color: #22d3ee; }
.pillar-icon-capsule.amber { background: rgba(245, 158, 11, 0.15); border: 1px solid rgba(251, 191, 36, 0.35); color: #fbbf24; }

.pillar-bento-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.pillar-bento-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.pillar-bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}

.pill-tag {
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   PLATFORM CAPABILITIES (3 PRISM BENTO CARDS)
   -------------------------------------------------------------------------- */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.capability-card {
  display: flex;
  flex-direction: column;
}

.capability-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.layer-badge {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--color-teal);
  background: rgba(6, 182, 212, 0.12);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.capability-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.capability-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.capability-visual-box {
  margin-top: auto;
  background: rgba(7, 10, 18, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.clara-mini-chip {
  display: block;
  width: 100%;
  padding: 0.6rem 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-highlight);
  font-size: 0.8rem;
  text-align: left;
  margin-bottom: 0.45rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.clara-mini-chip:hover,
.clara-mini-chip.active {
  background: rgba(6, 182, 212, 0.14);
  border-color: var(--color-teal);
  color: #fff;
}

/* --------------------------------------------------------------------------
   OMNI-CHANNEL CONSOLE BENTO
   -------------------------------------------------------------------------- */
.omni-bento-card {
  background: rgba(10, 14, 24, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.omni-channel-strip {
  display: flex;
  background: rgba(6, 8, 15, 0.85);
  border-bottom: 1px solid var(--border-subtle);
  overflow-x: auto;
}

.omni-tab-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.omni-tab-button:hover {
  color: #fff;
}

.omni-tab-button.active {
  color: #fff;
  border-bottom-color: var(--color-teal);
  background: rgba(6, 182, 212, 0.08);
}

.omni-bento-body {
  padding: 2.25rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.omni-check-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.omni-check-list li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.omni-check-list li svg {
  width: 15px;
  height: 15px;
  color: var(--color-teal);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   TESTIMONIALS (PRISM STYLE)
   -------------------------------------------------------------------------- */
.testimonials-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-bento {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-smooth);
}

.testimonial-bento:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-highlight);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.author-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-pic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-primary-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}

/* --------------------------------------------------------------------------
   SIGNATURE CTA BANNER (USER IMAGE 2)
   "Where communication, technology and innovation come together."
   "Telecom · AI · InfoTech · Professional Services"
   -------------------------------------------------------------------------- */
.cta-banner-reference {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: #060910;
  margin: 5rem 0 2rem 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(147, 51, 234, 0.25);
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    rgba(245, 158, 11, 0.38) 0%, 
    rgba(147, 51, 234, 0.45) 35%, 
    rgba(37, 99, 235, 0.45) 65%, 
    rgba(6, 182, 212, 0.38) 100%
  );
  opacity: 0.85;
}

.cta-banner-ribs {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04) 0px,
    rgba(255, 255, 255, 0.04) 2px,
    transparent 2px,
    transparent 16px
  );
  mix-blend-mode: overlay;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  padding: 4.25rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.cta-banner-text h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.cta-banner-pillars {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  opacity: 0.95;
  letter-spacing: 0.03em;
}

/* --------------------------------------------------------------------------
   MODERN MINIMAL FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: #030508;
  padding: 4.5rem 0 2.25rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h5 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .sanjaya-hero-bottom {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
  .sanjaya-hero-heading-block {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .sanjaya-hero-heading-block p {
    text-align: center;
  }
  .hero-agentic-stage {
    max-width: 100%;
    height: 440px;
  }
  .pillars-bento-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .capabilities-grid,
  .testimonials-bento-grid {
    grid-template-columns: 1fr;
  }
  .comparison-container,
  .omni-bento-body,
  .cta-banner-content {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
  .metrics-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-agentic-stage {
    perspective: none;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .stage-canvas-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 220px;
    left: auto;
    top: auto;
    transform: none !important;
  }
  .stage-chat-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 420px;
    right: auto;
    top: auto;
    transform: none !important;
  }
  .pillars-bento-grid,
  .process-grid,
  .metrics-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner-content {
    padding: 2.5rem 1.75rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}
