/* Anservo AI Premium Stylesheet - Rebuilt to match the actual Wayco.ai light theme */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Instrument+Serif:ital,wght@0,400;1,400&display=swap');

/* CSS Variables */
:root {
  /* Color Palette - Premium Vapi-style Beige & White Light Theme */
  --bg-main: #f4f4f0;       /* Soft warm beige background */
  --bg-surface: #ffffff;    /* Pure white card container */
  --bg-surface-white: #ffffff; /* Pure white card surface */
  --border-color: rgba(0, 0, 0, 0.06); /* Very clean light border */
  --border-color-hover: rgba(0, 0, 0, 0.12);
  
  --accent-primary: #059669;       /* Emerald/Teal brand accent */
  --accent-primary-hover: #048058;
  --accent-secondary: #3B82F6;     /* Electric Blue */
  --accent-secondary-hover: #2563EB;
  
  --text-primary: #0C0C0F;         /* Deep dark black text */
  --text-secondary: #55555c;       /* Clean slate subtext */
  --text-tertiary: #7c7c85;        /* Soft muted grey */
  
  /* Industry Accent Colors */
  --color-housing: #7C3AED;
  --bg-housing-tint: #F3E8FF;
  --border-housing: #E9D5FF;
  
  --color-healthcare: #0891B2;
  --bg-healthcare-tint: #ECFEFF;
  --border-healthcare: #CFFAFE;
  
  --color-hospitality: #D97706;
  --bg-hospitality-tint: #FEF3C7;
  --border-hospitality: #FDE68A;
  
  --color-insurance: #059669;
  --bg-insurance-tint: #D1FAE5;
  --border-insurance: #A7F3D0;
  
  /* Fonts */
  --font-headings: 'Instrument Serif', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  
  /* Radii - Clean geometric styling */
  --radius-card: 8px;
  --radius-button: 4px;
  --radius-pill: 24px;
  
  /* Transition speed */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Layout Widths */
  --max-width: 1200px;
}

/* Reset and Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Offset for sticky nav */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.625; /* De-congest body text */
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 400; /* Serif Display headings are thin and elegant */
  color: var(--text-primary);
  line-height: 1.25; /* More breathing room */
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(32px, 5vw, 44px); /* Increased size for desktop */
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(24px, 4vw, 32px); /* Increased size for desktop */
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h4 {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

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

/* YC Top Banner */
.yc-banner {
  background: #000;
  color: #FFF;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  position: relative;
  z-index: 1001;
  text-decoration: none;
}

.yc-banner-logo {
  width: 22px;
  height: 22px;
  background: #FF6600;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yc-banner-text {
  color: rgba(255, 255, 255, 0.85);
}

.yc-banner-arrow {
  opacity: 0.5;
}

/* Utility Layout Classes */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }
}

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

/* Typography styles */
.gradient-text {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px); /* De-congest and enlarge heading */
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px; /* Slightly larger */
  line-height: 1.6; /* More breathing room */
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 60px auto;
  font-weight: 400;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }
  .section-subtitle {
    font-size: 15px;
    line-height: 18px;
  }
}

/* Badge / Pill styling - Minimalist uppercase text labels */
.badge {
  display: inline-block;
  font-size: 11px;
  line-height: 1.3em;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-family: var(--font-body);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  border-radius: 4px;
  transition: all var(--transition-normal);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #2ae0c8 0%, #059669 100%) !important;
  color: #FFF !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(42, 224, 200, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #32ebd0 0%, #048058 100%) !important;
  transform: translateY(-1.5px) !important;
  box-shadow: 0 6px 20px rgba(42, 224, 200, 0.35);
}

.btn-outline {
  border: 1px solid var(--accent-primary) !important;
  color: var(--accent-primary) !important;
  background: transparent !important;
}

.btn-outline:hover {
  background: rgba(5, 150, 105, 0.06) !important;
  border-color: var(--accent-primary-hover) !important;
  color: var(--accent-primary-hover) !important;
}

.btn-ghost {
  color: var(--text-secondary);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--text-primary);
}

/* Premium Card Design */
.card-premium {
  background-color: var(--bg-surface-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: radial-gradient(800px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(10, 10, 10, 0.015), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.card-premium:hover::before {
  opacity: 1;
}

.card-premium:hover {
  transform: translateY(-3px);
  border-color: var(--border-color-hover);
  box-shadow: 0 10px 30px rgba(10, 10, 10, 0.04);
}

/* Dark Theme Section overrides (Converted to Light Beige theme style) */
.section-dark {
  background-color: #0A0A0C !important;
  color: #FFFFFF !important;
}

#chat-onboarding {
  background: url('onboarding_bg.png') no-repeat center center !important;
  background-size: cover !important;
}

.section-dark .section-title,
.section-dark .section-header-title {
  color: #FFFFFF !important;
}

.section-dark .section-subtitle,
.section-dark .section-header-desc {
  color: rgba(255, 255, 255, 0.7) !important;
}

.section-dark .card-premium {
  background-color: rgba(255, 255, 255, 0.03) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  color: #FFFFFF !important;
}

.section-dark .card-premium:hover {
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.section-dark .card-premium::before {
  background: radial-gradient(800px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 255, 255, 0.03), transparent 40%);
}

.section-dark .badge {
  background: transparent !important;
  border: none !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.section-dark .btn-outline {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #FFFFFF !important;
}

.section-dark .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: #FFFFFF !important;
}

.section-dark .benefit-info h3 {
  color: #FFFFFF !important;
}

.section-dark .benefit-info p {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* NAVBAR SECTION */
.navbar {
  position: fixed;
  top: 0; /* Directly at the top since YC Banner is gone */
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  transition: all var(--transition-normal);
  border-bottom: 1px solid transparent;
  background-color: transparent; /* Transparent at top to blend with dark red hero */
}

.navbar.scrolled {
  top: 0;
  height: 70px;
  background-color: rgba(244, 244, 240, 0.45); /* High transparency for frosted glass effect */
  backdrop-filter: blur(20px);                  /* Strong blur */
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); /* Soft border line */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: flex-start;
  background: linear-gradient(to right, #2ae0c8 0%, #7086ff 50%, #ff8ec7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  transition: opacity var(--transition-normal);
}

.logo span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  margin-left: 3px;
  align-self: flex-start;
  margin-top: 3px;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
  background: transparent;
  padding: 0;
  border-radius: 0;
  transition: -webkit-text-fill-color var(--transition-normal), color var(--transition-normal);
}

.navbar.scrolled .logo span {
  -webkit-text-fill-color: var(--text-primary);
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-normal);
}

.nav-links a:hover,
.nav-links a.active {
  color: #FFFFFF;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: #FFFFFF;
  transition: width var(--transition-normal), background-color var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.navbar.scrolled .nav-links a {
  color: var(--text-secondary);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--text-primary);
}

.navbar.scrolled .nav-links a::after {
  background-color: var(--text-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar .btn-ghost {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-normal);
}

.navbar .btn-ghost:hover {
  color: #FFFFFF;
}

.navbar.scrolled .btn-ghost {
  color: var(--text-secondary);
}

.navbar.scrolled .btn-ghost:hover {
  color: var(--text-primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 100%;
  height: 1.5px;
  background-color: #FFFFFF;
  transition: all var(--transition-normal);
}

.navbar.scrolled .hamburger span {
  background-color: var(--text-primary);
}

/* Mobile Navbar Styles */
@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-main);
    flex-direction: column;
    padding: 100px 40px;
    gap: 24px;
    transition: right var(--transition-normal);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    border-left: 1px solid var(--border-color);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 580px) {
  .nav-actions {
    display: none;
  }
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 180px 0 60px 0; /* Reduced padding-bottom to end closer to the Watch Demo button */
  overflow: hidden;
  color: #FFFFFF;
}

/* Background image container showing the crisp dark teal waves from phone_bg.png */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #042f2e; /* Fallback dark teal color */
  background: 
    linear-gradient(rgba(12, 12, 15, 0.35), rgba(12, 12, 15, 0.5)),
    url('phone_bg.png') no-repeat center center;
  background-size: cover;
  z-index: 1;
}

#hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-section .badge {
  color: rgba(255, 255, 255, 0.85) !important;
}

.hero-headline {
  font-size: clamp(72px, 12vw, 168px);
  line-height: 0.95em;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #FFFFFF;
}

.hero-section .gradient-text {
  background: linear-gradient(135deg, #FFE4E6 0%, #FECDD3 50%, #FDA4AF 100%); /* Warm rose/gold gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 0px;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 130px 0 40px 0; /* Reduced mobile padding-bottom for tight fit */
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 0 20px;
  }
}

/* INDUSTRY QUICK-LINK CARDS */
.industry-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
  z-index: 3;
}

.industry-quick-card {
  background: var(--bg-surface-white);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.35s ease;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  text-decoration: none;
  cursor: pointer;
  width: 100%;
}

.industry-quick-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-color-hover);
  box-shadow: 0 10px 30px rgba(10, 10, 10, 0.04);
}

/* Card Visual Container (Top part) */
.industry-card-visual {
  width: 100%;
  aspect-ratio: 1.3; /* Wide box aspect ratio */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
}

/* Moving colorful gradient backgrounds */
.uc-img-1 {
  background: linear-gradient(145deg, rgb(161,198,153) 0%, rgb(189,212,240) 50%, rgb(210,225,200) 100%);
  background-size: 200% 200%;
  animation: gradientFlow 10s ease infinite;
}
.uc-img-2 {
  background: linear-gradient(145deg, rgb(189,212,240) 0%, rgb(225,213,182) 50%, rgb(200,190,165) 100%);
  background-size: 200% 200%;
  animation: gradientFlow 10s ease infinite 2.5s;
}
.uc-img-3 {
  background: linear-gradient(145deg, rgb(225,213,182) 0%, rgb(152,167,170) 50%, rgb(190,200,195) 100%);
  background-size: 200% 200%;
  animation: gradientFlow 10s ease infinite 5s;
}
.uc-img-4 {
  background: linear-gradient(145deg, rgb(152,167,170) 0%, rgb(161,198,153) 50%, rgb(180,210,185) 100%);
  background-size: 200% 200%;
  animation: gradientFlow 10s ease infinite 7.5s;
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Zoom effect on visual background */
.industry-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
  z-index: 0;
}

.industry-quick-card:hover .industry-card-visual::before {
  transform: scale(1.05);
  filter: brightness(1.04);
}

/* Floating SVG icon that appears on hover */
.uc-hover-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  z-index: 2;
}

.industry-quick-card:hover .uc-hover-icon {
  opacity: 0.35;
  transform: translate(-50%, -50%) scale(1);
}

.uc-hover-icon svg {
  width: 64px;
  height: 64px;
  stroke: var(--text-primary);
  stroke-width: 1.2;
  fill: none;
}

.industry-quick-card:hover .uc-hover-icon svg {
  animation: iconFloat 3s ease-in-out infinite;
}

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

/* Card Content Compartment (Bottom part) */
.industry-card-content {
  padding: 20px 4px;
  text-align: left;
}

.industry-card-title {
  font-family: var(--font-headings);
  font-size: 24px;
  line-height: 1.1em;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.industry-card-desc {
  font-size: 15px;
  line-height: 1.3em;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .industry-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .industry-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION 3: AI-POWERED SOLUTIONS */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px; /* Increased from 16px to give cards breathing room */
}

.solution-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
  padding: 40px !important; /* Slightly more internal padding */
}

.solution-card p {
  line-height: 1.6 !important;
  margin-bottom: 24px !important;
}

.solution-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.solution-industry-title {
  font-family: var(--font-headings);
  font-size: 2.15rem; /* Larger and more elegant */
  line-height: 1.15;
  letter-spacing: 0.01em;
  font-weight: 400;
}

.solution-icon-wrapper {
  padding: 6px;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.solution-icon-wrapper svg {
  width: 22px;
  height: 22px;
  color: currentColor;
  display: block;
}

.solution-body {
  margin-bottom: 24px;
  flex-grow: 1;
}

.solution-features {
  list-style: none;
  margin-bottom: 32px;
}

.solution-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px; /* More breathing room */
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6; /* Increased line height */
}

.solution-features li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
}

/* Mockups inside solutions cards - Custom High-Fidelity Mockups & Animations */
.solution-mockup {
  height: 160px; /* Slightly taller for visual clarity */
  background: #FAFAF8;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  margin-top: 24px;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
}

/* --- Card 1: Housing (SMS Chat thread) --- */
.mockup-housing {
  display: flex;
  flex-direction: column;
}

.mockup-chat-header {
  padding: 6px 12px;
  background: #F4F4EE;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mockup-header-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-housing);
}

.mockup-header-title {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-primary);
}

.mockup-chat-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
  justify-content: flex-end;
}

.mockup-chat-bubble {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 11px;
  line-height: 14px;
  max-width: 80%;
  animation-duration: 8s;
  animation-iteration-count: infinite;
}

.mockup-chat-bubble.user {
  background: var(--color-housing);
  color: #FFF;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
  animation-name: housing-bubble-user;
}

.mockup-chat-bubble.ai {
  background: #FFF;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  align-self: flex-start;
  border-top-left-radius: 2px;
}

.mockup-chat-bubble.ai.bubble-typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  width: fit-content;
  animation-name: housing-bubble-typing;
}

.mockup-chat-bubble.ai.bubble-typing .typing-dot {
  width: 4px;
  height: 4px;
  background: var(--text-tertiary);
  border-radius: 50%;
  animation: typing-dot-bounce 1.4s infinite ease-in-out;
}

.mockup-chat-bubble.ai.bubble-typing .typing-dot:nth-child(2) { animation-delay: 0.2s; }
.mockup-chat-bubble.ai.bubble-typing .typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-dot-bounce {
  0%, 80%, 100% { transform: scale(0.6); }
  40% { transform: scale(1); }
}

.mockup-chat-bubble.ai.bubble-2 {
  animation-name: housing-bubble-ai;
  position: relative;
}

.success-indicator {
  display: block;
  font-size: 9px;
  color: var(--color-insurance);
  margin-top: 4px;
  font-weight: 500;
}

/* Housing Animation Keyframes */
@keyframes housing-bubble-user {
  0%, 15% { opacity: 0; transform: translateY(10px); }
  20%, 90% { opacity: 1; transform: translateY(0); }
  95%, 100% { opacity: 0; }
}

@keyframes housing-bubble-typing {
  0%, 25% { opacity: 0; display: none; }
  26%, 45% { opacity: 1; display: inline-flex; transform: translateY(10px); }
  50%, 100% { opacity: 0; display: none; transform: translateY(0); }
}

@keyframes housing-bubble-ai {
  0%, 50% { opacity: 0; transform: translateY(10px); }
  55%, 90% { opacity: 1; transform: translateY(0); }
  95%, 100% { opacity: 0; }
}


/* --- Card 2: Healthcare (EHR/Calendar Grid Booking) --- */
.mockup-healthcare {
  padding: 10px;
  display: flex;
  gap: 10px;
}

.mockup-calendar {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  background: #FFF;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
}

.calendar-header {
  padding: 4px 8px;
  background: #F4F4EE;
  font-size: 9px;
  font-weight: 600;
  border-bottom: 1px solid var(--border-color);
}

.calendar-grid {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.calendar-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #FAF9F6;
  flex-grow: 1;
}

.calendar-row:last-child {
  border-bottom: none;
}

.time-label {
  font-size: 8px;
  color: var(--text-tertiary);
  width: 42px;
  padding-left: 6px;
  flex-shrink: 0;
}

.calendar-slot {
  flex-grow: 1;
  font-size: 8px;
  padding: 4px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
}

.calendar-slot.filled {
  background: #F4F4EE;
  color: var(--text-secondary);
  font-weight: 500;
}

.appointment-block {
  background: var(--bg-healthcare-tint);
  border-left: 2px solid var(--color-healthcare);
  color: var(--color-healthcare);
  font-weight: 600;
  padding: 3px 6px;
  border-radius: 2px;
  width: 100%;
  animation: healthcare-appt-book 8s infinite;
}

.patient-card {
  flex: 1;
  background: #fafaf9;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: healthcare-patient 8s infinite;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.patient-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border-healthcare);
  color: var(--color-healthcare);
  font-size: 9px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.patient-name {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-primary);
}

.patient-status {
  font-size: 8px;
  color: var(--color-insurance);
  margin-top: 4px;
  font-weight: 500;
}

/* Healthcare Animation Keyframes */
@keyframes healthcare-appt-book {
  0%, 15% { opacity: 0; transform: scale(0.9) translateX(-10px); }
  25%, 90% { opacity: 1; transform: scale(1) translateX(0); }
  95%, 100% { opacity: 0; }
}

@keyframes healthcare-patient {
  0%, 40% { opacity: 0; transform: translateY(10px); }
  50%, 90% { opacity: 1; transform: translateY(0); }
  95%, 100% { opacity: 0; }
}


/* --- Card 3: Hospitality (Hotel Concierge Dashboard & Digital Key) --- */
.mockup-hospitality {
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.concierge-dashboard {
  width: 100%;
  display: flex;
  gap: 10px;
  height: 100%;
}

.guest-card {
  flex: 1.2;
  background: #fafaf9;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: hospitality-guest-fade 8s infinite;
}

.guest-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.guest-room {
  font-size: 9px;
  font-weight: 600;
  color: var(--color-hospitality);
}

.guest-status {
  font-size: 8px;
  background: var(--bg-hospitality-tint);
  color: var(--color-hospitality);
  padding: 2px 5px;
  border-radius: 2px;
  font-weight: 500;
  animation: hospitality-status-glow 8s infinite;
}

.guest-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.guest-dates {
  font-size: 8px;
  color: var(--text-tertiary);
}

.keycard-status {
  flex: 0.9;
  background: #fafaf9;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  animation: hospitality-key-fade 8s infinite;
}

.keycard-icon {
  font-size: 20px;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.keycard-label {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-secondary);
  animation: hospitality-key-activated 8s infinite;
}

.keycard-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  margin-left: -18px;
  border-radius: 50%;
  border: 2px solid var(--color-hospitality);
  opacity: 0;
  animation: hospitality-pulse 8s infinite;
  z-index: 1;
}

/* Hospitality Animation Keyframes */
@keyframes hospitality-guest-fade {
  0%, 10% { opacity: 0; transform: translateY(10px); }
  20%, 90% { opacity: 1; transform: translateY(0); }
  95%, 100% { opacity: 0; }
}

@keyframes hospitality-status-glow {
  0%, 45% { background: var(--bg-hospitality-tint); color: var(--color-hospitality); }
  55%, 90% { background: var(--bg-insurance-tint); color: var(--color-insurance); }
}

@keyframes hospitality-key-fade {
  0%, 30% { opacity: 0; transform: scale(0.95); }
  40%, 90% { opacity: 1; transform: scale(1); }
  95%, 100% { opacity: 0; }
}

@keyframes hospitality-key-activated {
  0%, 50% { color: var(--text-secondary); }
  60%, 90% { color: var(--color-insurance); }
}

@keyframes hospitality-pulse {
  0%, 45% { opacity: 0; transform: scale(0.5); }
  55% { opacity: 0.6; transform: scale(1); }
  70%, 90% { opacity: 0; transform: scale(1.6); }
}


/* --- Card 4: Insurance (Claims Approval sheet) --- */
.mockup-insurance {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.claim-form {
  width: 100%;
  max-width: 200px;
  background: #fafaf9;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 10px;
  position: relative;
  animation: insurance-form-slide 8s infinite;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.claim-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 6px;
  margin-bottom: 6px;
}

.claim-id {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-primary);
}

.claim-type {
  font-size: 8px;
  color: var(--text-tertiary);
}

.claim-detail {
  font-size: 9px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.claim-progress-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.claim-progress-bar {
  height: 4px;
  background: #F4F4EE;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.claim-progress-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--color-insurance);
  border-radius: inherit;
  animation: insurance-progress-fill 8s infinite;
}

.claim-progress-text {
  font-size: 8px;
  color: var(--text-tertiary);
  animation: insurance-progress-label 8s infinite;
}

.claim-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(2) rotate(-15deg);
  border: 2px solid var(--color-insurance);
  color: var(--color-insurance);
  background: rgba(209, 250, 229, 0.95);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  opacity: 0;
  pointer-events: none;
  animation: insurance-stamp-slam 8s infinite;
}

/* Insurance Animation Keyframes */
@keyframes insurance-form-slide {
  0%, 10% { opacity: 0; transform: translateY(12px); }
  20%, 90% { opacity: 1; transform: translateY(0); }
  95%, 100% { opacity: 0; }
}

@keyframes insurance-progress-fill {
  0%, 20% { width: 0; }
  45% { width: 100%; }
  100% { width: 100%; }
}

@keyframes insurance-progress-label {
  0%, 20% { content: "Processing..."; }
  45%, 90% { color: var(--color-insurance); }
}

@keyframes insurance-stamp-slam {
  0%, 48% { opacity: 0; transform: translate(-50%, -50%) scale(2) rotate(-15deg); }
  52% { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(-10deg); }
  55%, 90% { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(-10deg); }
  95%, 100% { opacity: 0; }
}

.solution-card[data-industry="housing"] { border-top: 3px solid var(--color-housing); }
.solution-card[data-industry="housing"] .solution-industry-title { color: var(--color-housing); }
.solution-card[data-industry="housing"] .solution-icon-wrapper { background: var(--bg-housing-tint); color: var(--color-housing); }
.solution-card[data-industry="housing"] .solution-features li svg { fill: var(--color-housing); }
.solution-card[data-industry="housing"] .learn-more { color: var(--color-housing); }

.solution-card[data-industry="healthcare"] { border-top: 3px solid var(--color-healthcare); }
.solution-card[data-industry="healthcare"] .solution-industry-title { color: var(--color-healthcare); }
.solution-card[data-industry="healthcare"] .solution-icon-wrapper { background: var(--bg-healthcare-tint); color: var(--color-healthcare); }
.solution-card[data-industry="healthcare"] .solution-features li svg { fill: var(--color-healthcare); }
.solution-card[data-industry="healthcare"] .learn-more { color: var(--color-healthcare); }

.solution-card[data-industry="hospitality"] { border-top: 3px solid var(--color-hospitality); }
.solution-card[data-industry="hospitality"] .solution-industry-title { color: var(--color-hospitality); }
.solution-card[data-industry="hospitality"] .solution-icon-wrapper { background: var(--bg-hospitality-tint); color: var(--color-hospitality); }
.solution-card[data-industry="hospitality"] .solution-features li svg { fill: var(--color-hospitality); }
.solution-card[data-industry="hospitality"] .learn-more { color: var(--color-hospitality); }

.solution-card[data-industry="insurance"] { border-top: 3px solid var(--color-insurance); }
.solution-card[data-industry="insurance"] .solution-industry-title { color: var(--color-insurance); }
.solution-card[data-industry="insurance"] .solution-icon-wrapper { background: var(--bg-insurance-tint); color: var(--color-insurance); }
.solution-card[data-industry="insurance"] .solution-features li svg { fill: var(--color-insurance); }
.solution-card[data-industry="insurance"] .learn-more { color: var(--color-insurance); }

.learn-more {
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}

.learn-more:hover svg {
  transform: translateX(4px);
}

.learn-more svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

@media (max-width: 900px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION 4: AI THAT DELIVERS (Dark section contrast) */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 80px;
}

.metric-card {
  text-align: center;
  padding: 40px 32px;
  border-radius: var(--radius-card);
  position: relative;
}

.metric-number {
  font-family: var(--font-headings);
  font-size: 5rem;
  line-height: 1;
  color: #FFF;
  margin-bottom: 12px;
}

.metric-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  font-weight: 400;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 60px;
}

.feature-highlight-card {
  padding: 24px;
}

.feature-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-highlight-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #FFFFFF; /* Ensure white color for visibility against dark backgrounds */
}

.feature-icon-box svg {
  width: 22px;
  height: 22px;
  color: #FFFFFF;
  display: block;
}

.feature-highlight-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.5;
}

.delivers-cta-container {
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION 5: OPERATIONAL PIPELINE */
.pipeline-container {
  margin-top: 60px;
  position: relative;
  width: 100%;
}

.pipeline-svg-container {
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  height: 30px;
  z-index: 1;
  pointer-events: none;
}

.pipeline-svg-line {
  width: 100%;
  height: 100%;
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
  z-index: 2;
}

.pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pipeline-node-wrapper {
  position: relative;
  margin-bottom: 24px;
}

.pipeline-node {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
  z-index: 3;
  position: relative;
}

.pipeline-node svg {
  width: 26px;
  height: 26px;
  color: currentColor;
  display: block;
}

/* Trigger pipeline step states */
.pipeline-step.active .pipeline-node {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  box-shadow: 0 0 15px rgba(10, 10, 10, 0.08);
}

.pipeline-card {
  background: var(--bg-surface-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 20px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  width: 100%;
}

.pipeline-step.active .pipeline-card {
  border-color: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(10, 10, 10, 0.02);
}

.pipeline-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pipeline-step.active .pipeline-card p {
  color: var(--text-primary);
}

@media (max-width: 1024px) {
  .pipeline-svg-container {
    display: none;
  }
  .pipeline-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pipeline-step {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    align-items: center;
  }
  .pipeline-node-wrapper {
    margin-bottom: 0;
  }
  .pipeline-card {
    height: auto;
    padding: 20px;
    justify-content: flex-start;
  }
}

/* SECTION 6: CHANNELS HUB (ISOMETRIC CYLINDER STACK) */
.channels-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hub-spoke-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-spoke-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Central Glowing Core Line (Unified AI Brain) */
.core-axis-line {
  stroke-dasharray: 6 6;
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* Enable glow on hover/active/auto-animate */
.channels-container.expanded .core-axis-line,
.channels-container.auto-animate .core-axis-line {
  opacity: 1;
}

/* Individual Isometric Disc Groups */
.isometric-disc {
  transform-style: flat; /* Keep 2D SVG rendering context safe */
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
  cursor: pointer;
}

/* Closed state (initial translation offsets relative to center cy=240) */
.isometric-disc.disc-1 { transform: translateY(32px); }
.isometric-disc.disc-2 { transform: translateY(16px); }
.isometric-disc.disc-3 { transform: translateY(0px); }
.isometric-disc.disc-4 { transform: translateY(-16px); }
.isometric-disc.disc-5 { transform: translateY(-32px); }

/* Expanded state offsets triggered by JS hover */
.channels-container.expanded .isometric-disc.disc-1 { transform: translateY(120px); }
.channels-container.expanded .isometric-disc.disc-2 { transform: translateY(60px); }
.channels-container.expanded .isometric-disc.disc-3 { transform: translateY(0px); }
.channels-container.expanded .isometric-disc.disc-4 { transform: translateY(-60px); }
.channels-container.expanded .isometric-disc.disc-5 { transform: translateY(-120px); }

/* Hover active state on individual disc node */
.isometric-disc.active {
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.35));
}
.isometric-disc.active .disc-front {
  stroke: #FFFFFF !important;
  stroke-width: 2.5px !important;
}

/* Face rendering and logic */
.logo-face {
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.icon-face {
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Top disc switches from logo to icon when expanded */
.channels-container.expanded .logo-face {
  opacity: 0;
}
.channels-container.expanded .icon-face {
  opacity: 1;
}

/* Non-top discs have icon visible by default */
.isometric-disc.disc-1 .icon-face,
.isometric-disc.disc-2 .icon-face,
.isometric-disc.disc-3 .icon-face,
.isometric-disc.disc-4 .icon-face {
  opacity: 1 !important;
}
.isometric-disc.disc-1 .logo-face,
.isometric-disc.disc-2 .logo-face,
.isometric-disc.disc-3 .logo-face,
.isometric-disc.disc-4 .logo-face {
  opacity: 0 !important;
}

/* Floating labels */
.disc-text-label {
  opacity: 0;
  transform: translate(335px, 240);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.channels-container.expanded .disc-text-label {
  opacity: 1;
  transform: translate(350px, 240);
}

/* -------------------- AUTOMATIC LOOP ANIMATION -------------------- */
@keyframes cycleDisc-1 {
  0%, 15%, 85%, 100% { transform: translateY(32px); }
  35%, 65% { transform: translateY(120px); }
}
@keyframes cycleDisc-2 {
  0%, 15%, 85%, 100% { transform: translateY(16px); }
  35%, 65% { transform: translateY(60px); }
}
@keyframes cycleDisc-3 {
  0%, 15%, 85%, 100% { transform: translateY(0px); }
  35%, 65% { transform: translateY(0px); }
}
@keyframes cycleDisc-4 {
  0%, 15%, 85%, 100% { transform: translateY(-16px); }
  35%, 65% { transform: translateY(-60px); }
}
@keyframes cycleDisc-5 {
  0%, 15%, 85%, 100% { transform: translateY(-32px); }
  35%, 65% { transform: translateY(-120px); }
}

@keyframes cycleCore {
  0%, 15%, 85%, 100% { opacity: 0; }
  35%, 65% { opacity: 1; }
}

@keyframes cycleLabel {
  0%, 15%, 85%, 100% { opacity: 0; transform: translate(335px, 240); }
  35%, 65% { opacity: 1; transform: translate(350px, 240); }
}

@keyframes cycleLogo {
  0%, 15%, 85%, 100% { opacity: 1; }
  35%, 65% { opacity: 0; }
}
@keyframes cycleIcon {
  0%, 15%, 85%, 100% { opacity: 0; }
  35%, 65% { opacity: 1; }
}

/* Apply CSS keyframes during auto-animate state */
.channels-container.auto-animate .disc-1 { animation: cycleDisc-1 8s ease-in-out infinite; }
.channels-container.auto-animate .disc-2 { animation: cycleDisc-2 8s ease-in-out infinite; }
.channels-container.auto-animate .disc-3 { animation: cycleDisc-3 8s ease-in-out infinite; }
.channels-container.auto-animate .disc-4 { animation: cycleDisc-4 8s ease-in-out infinite; }
.channels-container.auto-animate .disc-5 { animation: cycleDisc-5 8s ease-in-out infinite; }
.channels-container.auto-animate .core-axis-line { animation: cycleCore 8s ease-in-out infinite; }
.channels-container.auto-animate .disc-text-label { animation: cycleLabel 8s ease-in-out infinite; }
.channels-container.auto-animate .disc-5 .logo-face { animation: cycleLogo 8s ease-in-out infinite; }
.channels-container.auto-animate .disc-5 .icon-face { animation: cycleIcon 8s ease-in-out infinite; }

/* Custom styles for channels section on mint/white gradient background */
#channels {
  background: url('channels_bg.png') no-repeat center center !important;
  background-size: cover !important;
  color: var(--text-primary) !important;
  position: relative;
  overflow: hidden;
}

#channels .section-title {
  color: var(--text-primary) !important;
}

#channels .text-secondary {
  color: var(--text-secondary) !important;
}

#channels .badge {
  color: #7065F0 !important; /* Premium brand purple/indigo */
}

#channels .channel-card {
  background: rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  color: var(--text-primary) !important;
  transition: all var(--transition-normal);
}

#channels .channel-card:hover,
#channels .channel-card.active {
  background: rgba(255, 255, 255, 0.8) !important;
  border-color: rgba(112, 101, 240, 0.3) !important;
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(112, 101, 240, 0.08);
}

#channels .channel-icon-circle {
  background: rgba(112, 101, 240, 0.06) !important;
  border-color: rgba(112, 101, 240, 0.1) !important;
  color: #7065F0 !important;
}

#channels .channel-card.active .channel-icon-circle {
  background: #7065F0 !important;
  border-color: #7065F0 !important;
  color: #FFFFFF !important;
}

#channels .channel-info h3 {
  color: var(--text-primary) !important;
}

#channels .channel-info p {
  color: var(--text-secondary) !important;
}

/* Right lists styling */
.channels-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-surface-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 20px;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.channel-card.active {
  border-color: var(--accent-primary);
  background: var(--bg-main);
  box-shadow: 0 4px 20px rgba(10, 10, 10, 0.02);
  transform: translateX(4px);
}

.channel-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
  flex-shrink: 0;
}

.channel-card.active .channel-icon-circle {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #FFF;
}

.channel-info h3 {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.channel-info p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .channels-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* SECTION 8: SMARTER OPERATIONS (DASHBOARD) */
.smarter-ops-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 50px;
  align-items: center;
}

/* Keep dashboard dark navy for contrast or styling */
.dashboard-mockup {
  background: #0D111E;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  color: #FFF;
}

.db-header {
  background: #111627;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.db-title {
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.db-title-dot {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

.db-actions {
  display: flex;
  gap: 8px;
}

.db-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.db-dot.red { background-color: #EF4444; }
.db-dot.yellow { background-color: #F59E0B; }
.db-dot.green { background-color: #10B981; }

.db-body {
  padding: 24px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
}

@media (max-width: 580px) {
  .db-body {
    grid-template-columns: 1fr;
  }
}

.db-left-pane {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.chart-card, .pie-card, .counter-card, .live-feed-card {
  background: #141A2D;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 16px;
}

.chart-card h4, .pie-card h4, .counter-card h4, .live-feed-card h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
}

.bar-chart-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 120px;
  padding-top: 10px;
}

.chart-bar-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  height: 100%;
  justify-content: flex-end;
}

.chart-bar {
  width: 14px;
  background: #6366F1;
  border-radius: 2px 2px 0 0;
  height: 0;
  transition: height 1.5s ease-out;
}

.chart-bar-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

.counter-val {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 400;
  color: #FFF;
  margin-bottom: 2px;
}

.counter-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.live-feed-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 250px;
  overflow: hidden;
}

.feed-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 0.75rem;
}

.feed-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feed-name {
  font-weight: 600;
  color: #FFF;
}

.feed-industry {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
}

.feed-status {
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 500;
}

.feed-status.resolved {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}
.feed-status.transferred {
  background: rgba(245, 158, 11, 0.1);
  color: #F59E0B;
}
.feed-status.answered {
  background: rgba(99, 102, 241, 0.1);
  color: #8B5CF6;
}

/* Pie Chart components */
.outcome-pie-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.simulated-pie {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: conic-gradient(
    #6366F1 0% 70%,
    #8B5CF6 70% 100%
  );
  position: relative;
  margin-bottom: 12px;
}

.simulated-pie-inner {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 60px;
  height: 60px;
  background: #141A2D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.outcome-labels {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.outcome-label-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
}

.label-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
}

.label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.label-dot.ai { background-color: #6366F1; }
.label-dot.team { background-color: #8B5CF6; }

/* Right benefits list */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.benefit-item {
  display: flex;
  gap: 20px;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  color: currentColor;
  display: block;
}

.benefit-info h3 {
  font-size: 1.5rem;
  margin-bottom: 8px; /* Increased margin */
  line-height: 1.25;
}

.benefit-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6; /* Increased line-height */
}

@media (max-width: 1024px) {
  .smarter-ops-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* SECTION 9: AI VOICE ONBOARDING (Dark section overrides) */
.onboarding-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 50px;
  align-items: center;
}

.onboarding-grid .benefit-icon {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  color: #FFFFFF !important;
}

.phone-mockup {
  width: 100%;
  max-width: 340px;
  background: #000000;
  border: 12px solid #08080a; /* Premium uniform screen bezel */
  border-radius: 50px; /* Snug squircle corners */
  aspect-ratio: 9 / 19.5;
  margin: 0 auto;
  position: relative;
  overflow: visible; /* Let 3D side buttons hang outside */
  display: flex;
  flex-direction: column;
  box-shadow:
    /* Space Black brushed titanium physical frame layer */
    0 0 0 1px #121213, /* Outer seam */
    0 0 0 4px #2b2b2e, /* Solid titanium band body */
    0 0 0 5px #151516, /* Outer bevel chamfer */
    /* Light specular reflections on titanium edge */
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 0 3px rgba(255, 255, 255, 0.2),
    /* Soft floating shadows representing physical depth */
    0 10px 20px rgba(0, 0, 0, 0.45),
    0 25px 55px rgba(0, 0, 0, 0.5),
    0 40px 90px rgba(0, 0, 0, 0.6);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

/* Subtle device tilt and reflection shift on hover! */
.phone-mockup:hover {
  transform: perspective(1000px) translateY(-8px) rotateX(4deg) rotateY(-4deg);
  box-shadow:
    0 0 0 1px #121213,
    0 0 0 4px #3a3a3e, /* Brightens metal band slightly to simulate light reflection */
    0 0 0 5px #19191b,
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 0 4px rgba(255, 255, 255, 0.25),
    0 15px 35px rgba(0, 0, 0, 0.5),
    0 35px 75px rgba(0, 0, 0, 0.55),
    0 55px 110px rgba(0, 0, 0, 0.65);
}

/* Antenna Lines on Frame */
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 40px;
  left: -16px;
  width: 4px;
  height: 4px;
  background: #151516; /* Left top antenna line */
  z-index: -2;
  box-shadow: 
    364px 0 0 #151516, /* Right top antenna line */
    0 450px 0 #151516, /* Left bottom antenna line */
    364px 450px 0 #151516; /* Right bottom antenna line */
}

/* Physical 3D Buttons */
.phone-btn {
  position: absolute;
  background: linear-gradient(to bottom, #2d2d30 0%, #151516 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    0 1px 3px rgba(0, 0, 0, 0.4);
  z-index: -1;
  transition: transform 0.1s ease, filter 0.2s ease;
}

.phone-btn-action {
  top: 75px;
  left: -16px;
  width: 4px;
  height: 24px;
  border-radius: 3px 0 0 3px;
  border-right: none;
}

.phone-btn-volup {
  top: 115px;
  left: -16px;
  width: 4px;
  height: 48px;
  border-radius: 3px 0 0 3px;
  border-right: none;
}

.phone-btn-voldown {
  top: 175px;
  left: -16px;
  width: 4px;
  height: 48px;
  border-radius: 3px 0 0 3px;
  border-right: none;
}

.phone-btn-power {
  top: 125px;
  right: -16px;
  width: 4px;
  height: 72px;
  border-radius: 0 3px 3px 0;
  border-left: none;
}

/* Push-in button effect on hover / click */
.phone-btn-action:hover, .phone-btn-volup:hover, .phone-btn-voldown:hover {
  transform: translateX(1px);
  filter: brightness(1.2);
}

.phone-btn-power:hover {
  transform: translateX(-1px);
  filter: brightness(1.2);
}

/* Earpiece Speaker Slit */
.phone-speaker {
  width: 50px;
  height: 2.5px;
  background: #0d0d0e;
  border-radius: 1px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 
    inset 0 1px 1px rgba(0, 0, 0, 0.8),
    0 0.5px 0.5px rgba(255, 255, 255, 0.1);
}

/* Dynamic Island Capsule */
.phone-notch {
  width: 90px;
  height: 28px;
  background-color: #000000;
  border-radius: 14px;
  position: absolute;
  top: 8px; /* Snug top position */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 
    inset 0 0 2px rgba(255, 255, 255, 0.15),
    0 1px 3px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  box-sizing: border-box;
}

/* TrueDepth Proximity Sensor */
.phone-notch-sensor {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #05080c 0%, #010204 80%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.1);
  opacity: 0.85;
}

/* Active Camera Status indicator dot */
.phone-notch-indicator {
  width: 3.5px;
  height: 3.5px;
  border-radius: 50%;
  background-color: #30d158; /* iOS Green active status indicator */
  box-shadow: 0 0 6px rgba(48, 209, 88, 0.8);
  animation: indicator-pulse 2.5s infinite ease-in-out;
  margin: 0 auto;
}

/* Front-Facing Camera Lens */
.phone-notch-camera {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1e3545 0%, #09121a 45%, #020406 85%);
  border: 1.5px solid #080a0d;
  box-shadow: 
    inset 0 0.5px 1.5px rgba(255, 255, 255, 0.4),
    0 0 2px rgba(0, 0, 0, 0.5);
  position: relative;
}

.phone-notch-camera::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 2.5px;
  height: 2.5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  filter: blur(0.1px);
}

@keyframes indicator-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

.phone-screen {
  background: 
    radial-gradient(circle at 15% 25%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(139, 92, 246, 0.12) 0%, transparent 40%),
    #060609; /* Deep, premium dark space */
  background-size: 200% 200%;
  animation: aura-bg-flow 10s ease-in-out infinite alternate;
  border-radius: 38px; /* Snug fit inside bezel */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 48px 0 0 0; /* Clear space for status bar and dynamic island */
  height: 100%;
  color: #FFF;
  position: relative;
  overflow: hidden;
}

@keyframes aura-bg-flow {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

/* Glass Glare Overlay */
.phone-glare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 28%, transparent 28%),
    linear-gradient(230deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 15%);
  pointer-events: none;
  z-index: 8;
  border-radius: inherit;
}

/* iOS Home Indicator Bar */
.phone-screen::after {
  content: '';
  position: absolute;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.45);
  border-radius: 2.5px;
  z-index: 10;
}

/* iOS Status Bar styling */
.phone-status-bar {
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9;
  pointer-events: none;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", sans-serif;
  color: #FFFFFF;
}

.status-time {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.status-icons {
  display: flex;
  gap: 6px;
  align-items: center;
}

.status-icon {
  display: block;
  opacity: 0.95;
  color: #FFFFFF;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(22, 22, 24, 0.75); /* iOS dark-gray translucent bar */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.15);
  margin-top: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 5;
}

.chat-back-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 8px 6px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-primary);
}

.chat-back-btn svg {
  width: 12px;
  height: 20px;
  stroke: currentColor;
}

.chat-contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 80%),
              linear-gradient(135deg, #4338ca 0%, #6366f1 50%, #a5b4fc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all var(--transition-normal);
}

.chat-avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background-color: #10B981;
  border: 1.5px solid #000000;
  border-radius: 50%;
  box-shadow: 0 0 6px #10B981;
  animation: avatar-pulse 2s infinite;
}

@keyframes avatar-pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.chat-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.7);
}

.chat-name-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.chat-name {
  font-size: 11px;
  font-weight: 500;
  color: #FFFFFF;
  text-align: center;
  max-width: 155px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-chevron {
  font-size: 10px;
  color: #8E8E93;
  font-weight: bold;
}

.chat-video-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 4px 6px 8px;
  flex-shrink: 0;
  color: var(--accent-primary);
}

.chat-video-icon svg {
  width: 22px;
  height: 16px;
  stroke: currentColor;
}

.chat-date-stamp {
  font-size: 10px;
  font-weight: 600;
  color: #AEAEB2; /* iOS light-gray subtext for high-contrast */
  text-align: center;
  margin: 16px 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.transcript-area {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  padding: 16px 14px;
  background: transparent;
}

.transcript-msg {
  padding: 10px 14px;
  font-size: 13.5px;
  line-height: 1.45;
  max-width: 75%;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  margin-bottom: 2px;
  box-sizing: border-box;
  word-wrap: break-word;
  transition: all var(--transition-fast) ease;
}

.transcript-msg.ai {
  background: rgba(255, 255, 255, 0.08); /* Frosted glass effect */
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFF;
  align-self: flex-start;
  border-radius: 16px 16px 16px 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.transcript-msg.user {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%); /* Neon Purple & Blue gradient */
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #FFF;
  align-self: flex-end;
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
}

.transcript-msg.system {
  display: none; /* Hide dev-style logs like [Chat started] */
}

/* Typing Indicator Animation */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px 16px 16px 4px;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.typing-dot {
  width: 6px;
  height: 6px;
  background-color: #FFFFFF;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: typing-bounce 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

/* Phone dial/call controls footer styling */
.chat-footer {
  border-top: 0.5px solid rgba(255, 255, 255, 0.12);
  padding: 8px 12px 28px 12px; /* Bottom padding gives room for home indicator */
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(22, 22, 24, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  width: 100%;
  box-sizing: border-box;
  margin-top: 0;
}

.chat-input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 8px 14px;
  color: #FFFFFF;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  font-size: 13.5px;
  outline: none;
  transition: all var(--transition-fast);
}

.chat-input:focus {
  border-color: #0A84FF;
  background: rgba(255, 255, 255, 0.08);
}

.chat-input[readonly] {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.05);
}

.chat-send-btn {
  background: #0A84FF;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.chat-send-btn:hover:not(:disabled) {
  background: #007AFF;
  transform: scale(1.05);
}

.chat-send-btn:disabled {
  background: #252528;
  color: rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
}

.chat-send-btn svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

@keyframes typing-bounce {
  0%, 80%, 100% { transform: scale(0.6); }
  40% { transform: scale(1); }
}

@media (max-width: 1024px) {
  .onboarding-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* SECTION 10: FAQ SECTION */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: none;
}

.faq-question {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.faq-trigger:hover .faq-question {
  color: var(--accent-secondary);
}

.faq-icon-box {
  position: relative;
  width: 16px;
  height: 16px;
  color: var(--text-secondary);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-icon-line {
  position: absolute;
  background-color: currentColor;
  transition: transform var(--transition-normal);
}

.faq-icon-line.horizontal {
  top: 7px;
  left: 1px;
  width: 14px;
  height: 1.5px;
}

.faq-icon-line.vertical {
  top: 1px;
  left: 7px;
  width: 1.5px;
  height: 14px;
}

.faq-item.active .faq-icon-line.vertical {
  transform: rotate(90deg) scaleY(0);
}

.faq-item.active .faq-icon-box {
  color: var(--accent-secondary);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
}

.faq-content {
  padding-bottom: 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* SECTION 11: DEMO REQUEST PAGE */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.demo-form-card {
  background: var(--bg-surface-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 40px;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 580px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-input {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-button);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  width: 100%;
}

.form-input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.05);
}

.form-input.error {
  border-color: #EF4444;
}

.form-error-msg {
  color: #EF4444;
  font-size: 0.75rem;
  margin-top: 4px;
  display: none;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B6B6B'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

select.form-input option {
  background-color: var(--bg-surface-white);
  color: var(--text-primary);
}

.privacy-note {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-align: center;
}

/* Spinner loading styles */
.spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFF;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
}

.btn-primary.loading .spinner {
  display: inline-block;
}

.btn-primary.loading {
  pointer-events: none;
  opacity: 0.8;
}

.form-success-container {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0;
}

.success-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-insurance-tint);
  border: 1px solid var(--border-insurance);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-insurance);
  font-size: 1.75rem;
  margin-bottom: 24px;
}

.demo-info-pane h3 {
  font-size: 2.25rem;
  margin-bottom: 30px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.timeline-item {
  display: flex;
  gap: 20px;
}

.timeline-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
}

.timeline-content h4 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}

.demo-phone-pane {
  background: var(--bg-surface-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.demo-phone-icon {
  font-size: 1.5rem;
  color: var(--accent-secondary);
}

.demo-phone-text p {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.demo-phone-text a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.demo-phone-text a:hover {
  color: var(--accent-secondary);
}

.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* SECTION 12: FOOTER (Replicated Wayco.ai light footer) */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 0 40px 0;
  background-color: #0A0A0C; /* Premium dark background */
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 32px;
  text-align: left;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7); /* Light secondary text */
  font-size: 0.88rem;
  max-width: 240px;
  line-height: 1.4;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
}

.social-link:hover {
  color: #FFFFFF;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5); /* Muted headers */
  margin-bottom: 16px;
  line-height: 1.3em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul a {
  font-size: 13px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-col ul a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  gap: 16px;
}

.footer-copyright a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-copyright a:hover {
  color: #FFFFFF;
}

.compliance-badges {
  display: flex;
  gap: 12px;
}

.compliance-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay classes */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Reduced Motion overrides */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .chart-bar {
    transition: none;
  }
  .spoke-node, .hub-center-circle, .timeline-badge, .btn, .industry-quick-card {
    transition: none;
  }
}

/* ==================== ELISEAI-STYLE VISUAL ANIMATIONS ==================== */

/* 1. Infinite Logo Marquee */
.logo-marquee {
  overflow: hidden;
  padding: 36px 0;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  width: 100%;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-main) 0%, rgba(3, 3, 5, 0) 100%);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-main) 0%, rgba(3, 3, 5, 0) 100%);
}

.logo-track {
  display: flex;
  width: calc(240px * 12);
  animation: marquee-scroll 24s linear infinite;
  gap: 80px;
  align-items: center;
}

.logo-item {
  width: 160px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.15rem;
  color: #8A8A85;
  opacity: 0.65;
  transition: opacity 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.logo-item:hover {
  opacity: 1;
  color: var(--text-primary);
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-1440px); }
}

/* 2. Hero Rotating Title Accent */
.rotating-text-accent {
  display: inline-block;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
  transform: translateY(0);
}

.rotating-text-accent.fade-out {
  opacity: 0;
  transform: translateY(-20px);
}

.rotating-text-accent.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

/* 3. Call Waveform Audio Visualizer */
.audio-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 24px;
  margin-top: 10px;
  animation: fade-in-msg 0.3s ease-out;
}

.wave-bar {
  width: 3px;
  height: 8px;
  background-color: var(--accent-primary);
  border-radius: 2px;
  animation: bounce-wave 0.8s ease-in-out infinite alternate;
  transform-origin: bottom;
}

.wave-bar:nth-child(1) { animation-delay: 0.1s; height: 6px; }
.wave-bar:nth-child(2) { animation-delay: 0.25s; height: 16px; background-color: var(--accent-secondary); }
.wave-bar:nth-child(3) { animation-delay: 0.4s; height: 22px; }
.wave-bar:nth-child(4) { animation-delay: 0.55s; height: 12px; background-color: var(--accent-secondary); }
.wave-bar:nth-child(5) { animation-delay: 0.7s; height: 8px; }

@keyframes bounce-wave {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1.4); }
}



/* Pause the waveform animation when audio is paused or muted */
.audio-waveform.paused .wave-bar {
  animation-play-state: paused;
}

/* Quick-Reply Onboarding Chips Styling */
.quick-reply-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0;
  justify-content: center;
  width: 100%;
  padding: 0 4px;
  box-sizing: border-box;
}

.reply-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-fast) ease-out;
  animation: fade-in-msg 0.25s ease-out;
}

.reply-chip:hover {
  background: rgba(139, 92, 246, 0.18);
  border-color: var(--accent-primary);
  color: #FFF;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.35);
  transform: translateY(-1px);
}

.reply-chip:active {
  transform: scale(0.95);
}

/* --- Pricing Section Styles --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-surface-white) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-card);
  padding: 32px;
  position: relative;
  transition: all var(--transition-normal);
}

.pricing-card.popular {
  border: 2px solid var(--accent-primary) !important;
  box-shadow: 0 10px 30px rgba(10, 10, 10, 0.04);
}

.pricing-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-primary);
  color: #FFF;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
}

.pricing-header h3 {
  font-size: 24px;
  font-family: var(--font-headings);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pricing-price {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
}

.price-amount {
  font-size: 44px;
  font-weight: 700;
  font-family: var(--font-headings);
  color: var(--text-primary);
  line-height: 1;
}

.price-period {
  font-size: 14px;
  color: var(--text-secondary);
  margin-left: 4px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Solution Card Highlight Pulse Effect */
@keyframes card-highlight-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(99, 102, 241, 0);
  }
  30% {
    box-shadow: 0 0 0 6px var(--pulse-color, var(--accent-primary));
  }
  100% {
    box-shadow: 0 0 0 12px rgba(99, 102, 241, 0);
  }
}

.solution-card.highlight-pulse {
  animation: card-highlight-pulse 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Demo Page Split Grid Layout */
.demo-page-container {
  padding-top: 40px;
  padding-bottom: 80px;
  background-color: var(--bg-main);
}

.demo-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .demo-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Neuron / Brain Synaptic style rules */
.synaptic-branch-line {
  stroke: var(--border-color);
  stroke-width: 0.75px;
  opacity: 0.45;
  transition: all var(--transition-normal);
}

.synaptic-branch-node {
  fill: var(--bg-surface-white);
  stroke: var(--border-color);
  stroke-width: 1px;
  transition: all var(--transition-normal);
}

/* Synapse activation state when hovered/active */
.spoke-node.active .synaptic-branch-line,
.spoke-node:hover .synaptic-branch-line {
  stroke: var(--accent-primary); /* Electric Teal neural axon line */
  opacity: 0.8;
  stroke-width: 1.25px;
}

.spoke-node.active .synaptic-branch-node,
.spoke-node:hover .synaptic-branch-node {
  fill: var(--accent-secondary); /* Electric Indigo synapse bulb */
  stroke: var(--accent-primary);
  filter: url(#neuron-glow);
}

.hub-center-circle {
  filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.25));
}

.hub-center:hover .hub-center-circle {
  filter: url(#neuron-glow);
}

/* Call distribution counts & row animations */
.industry-count-badge {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  min-width: 32px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-fast) ease-out;
}

@keyframes row-pulse {
  0% {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.04);
  }
  20% {
    background: rgba(16, 185, 129, 0.12); /* Soft green fade */
    border-color: rgba(16, 185, 129, 0.3);
  }
  100% {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.04);
  }
}

.industry-row.pulse {
  animation: row-pulse 1.2s ease-out;
}

.industry-row.pulse .industry-count-badge {
  background: #10B981; /* Glow green badge */
  border-color: #10B981;
  transform: scale(1.1);
}

.industry-feed-icon {
  width: 14px;
  height: 14px;
  color: #8E8E93; /* Subtle gray vector shape */
  display: inline-block;
  vertical-align: -1px;
  margin-right: 6px;
  stroke-width: 2.25px; /* Enhance line visibility at small size */
  transition: color var(--transition-fast) ease-out;
}

.industry-row.pulse .industry-feed-icon {
  color: #10B981; /* Turn vector icon green during the pulse animation */
}

/* ==================== VAPI-STYLE INTERACTIVE GRID LINES ==================== */
.grid-container {
  position: relative;
}

.hero-grid-overlay {
  position: absolute;
  top: -180px; /* Offset parent padding-top to run vertical lines all the way to the top */
  bottom: -60px; /* Offset parent padding-bottom to run vertical lines to the bottom of the section */
  left: 24px;
  right: 24px;
  pointer-events: none;
  z-index: 2; /* Sit in front of background gradient/particles, behind text content */
}

/* Horizontal line extending full screen width */
.hero-grid-overlay .grid-line-h {
  position: absolute;
  top: 100px; /* Position horizontally just below the navbar */
  left: -100vw;
  right: -100vw;
  height: 1px;
  background-color: rgba(229, 231, 235, 0.15); /* Faint silver line */
  transition: background-color 0.1s ease;
}

.hero-grid-overlay .grid-line-h::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #7000ff, #0066ff, #00f5ff, #00ff00, #fffae6, #ff7f00, #ff0000);
  background-size: 100vw 100%;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-mask-image: radial-gradient(
    circle 200px at var(--mouse-x, 0px) 50%,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: radial-gradient(
    circle 200px at var(--mouse-x, 0px) 50%,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: var(--h-glow-opacity, 0);
  transition: opacity 0.1s ease;
  pointer-events: none;
}

/* Section Grid Overlay */
.section-grid-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  pointer-events: none;
  z-index: 1; /* Sit behind content cards */
}

/* Section-specific padding offsets to make the vertical lines run continuously without cuts */
.quick-solutions-section .section-grid-overlay {
  top: -60px;
  bottom: -40px;
}

#solutions .section-grid-overlay {
  top: -100px;
  bottom: -100px;
}

#metrics .section-grid-overlay {
  top: -100px;
  bottom: -100px;
}

#pipeline .section-grid-overlay {
  top: -100px;
  bottom: -100px;
}

#channels .section-grid-overlay {
  top: -100px;
  bottom: -100px;
}

#smarter-ops .section-grid-overlay {
  top: -100px;
  bottom: -100px;
}

#chat-onboarding .section-grid-overlay {
  top: -100px;
  bottom: -100px;
}

#faq .section-grid-overlay {
  top: -100px;
  bottom: -100px;
}

.footer .section-grid-overlay {
  top: -60px;
  bottom: -40px;
}

/* Base vertical lines - True Silver Grey */
.vertical-grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: rgba(180, 180, 175, 0.3); /* Faint silver line */
  z-index: 1;
  pointer-events: none;
  transition: background-color 0.1s ease;
}

.vertical-grid-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #7000ff, #0066ff, #00f5ff, #00ff00, #fffae6, #ff7f00, #ff0000);
  -webkit-mask-image: radial-gradient(
    circle 200px at 50% var(--mouse-y, 0px),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: radial-gradient(
    circle 200px at 50% var(--mouse-y, 0px),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: var(--glow-opacity, 0);
  transition: opacity 0.1s ease;
  pointer-events: none;
}

.vertical-grid-line.left {
  left: 0;
}

.vertical-grid-line.right {
  right: 0;
}

/* Dark section grid overrides (Hero section) - True Metallic Silver */
.hero-section .vertical-grid-line {
  background-color: rgba(229, 231, 235, 0.15); /* Faint silver line for dark background */
}

/* Hide grid lines on mobile/tablet since layouts collapse to single column */
@media (max-width: 1024px) {
  .hero-grid-overlay,
  .section-grid-overlay,
  .vertical-grid-line {
    display: none !important;
  }
}

/* Align starting text to have a 0.5rem (8px) gap from the vertical grid line on desktop */
@media (min-width: 1025px) {
  .logo {
    margin-left: 0.5rem;
  }
  .text-left {
    padding-left: 0.5rem;
  }
  #chat-onboarding .benefits-list {
    padding-left: 0.5rem;
  }
}

