* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0a0a0a;
  line-height: 1.6;
  background: #ffffff;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  background: white;
  border-bottom: 1px solid #e5e5e5;
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: #0a0a0a;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #0a0a0a;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #525252;
}

.btn-primary {
  background: #0a0a0a;
  color: white !important;
  padding: 11px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: #2a2a2a;
}

.btn-secondary {
  background: transparent;
  color: #0a0a0a;
  padding: 11px 24px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: #0a0a0a;
}

/* Hero Section */
.hero {
  max-width: 900px;
  margin: 120px auto 100px;
  text-align: center;
  padding: 0 24px;
}

.hero h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero p {
  font-size: 20px;
  color: #525252;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero .btn-primary {
  font-size: 16px;
  padding: 14px 32px;
}

/* Features Section */
.features {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  background: #fafafa;
  padding: 48px 36px;
  border-radius: 12px;
  transition: transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-card p {
  color: #525252;
  font-size: 16px;
  line-height: 1.7;
}

/* Testimonial Section */
.testimonial-section {
  max-width: 1000px;
  margin: 100px auto;
  padding: 60px 48px;
  background: #fafafa;
  border-radius: 16px;
}

.testimonial {
  display: flex;
  gap: 48px;
  align-items: center;
}

.testimonial-photo {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-content {
  flex: 1;
}

.testimonial-quote {
  font-size: 22px;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.6;
  color: #0a0a0a;
}

.testimonial-author {
  font-size: 16px;
  color: #525252;
}

.testimonial-author strong {
  color: #0a0a0a;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  max-width: 900px;
  margin: 120px auto;
  text-align: center;
  padding: 0 24px;
}

.cta-section h2 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  line-height: 1.2;
}

.cta-section p {
  font-size: 20px;
  color: #525252;
  margin-bottom: 32px;
}

/* Footer */
.footer {
  border-top: 1px solid #e5e5e5;
  padding: 48px;
  text-align: center;
  color: #a3a3a3;
  font-size: 14px;
  margin-top: 120px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}

.footer-links a {
  color: #525252;
  text-decoration: none;
  transition: color 0.2s;
}

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

/* About Page */
.about-hero {
  max-width: 900px;
  margin: 100px auto 80px;
  text-align: center;
  padding: 0 48px;
}

.about-hero h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 32px;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.about-hero p {
  font-size: 22px;
  color: #525252;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.team-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 48px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
}

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

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.team-member h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-member p {
  color: #525252;
  font-size: 15px;
}

/* Schedule Page */
.schedule-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.schedule-left h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.schedule-left > p {
  font-size: 18px;
  color: #525252;
  margin-bottom: 48px;
  line-height: 1.7;
}

.form-container {
  background: #fafafa;
  padding: 48px;
  border-radius: 16px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0a0a0a;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: white;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #0a0a0a;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  background: #0a0a0a;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 12px;
}

.submit-btn:hover {
  background: #2a2a2a;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 48px;
  }
  
  .features {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  
  .testimonial {
    flex-direction: column;
    text-align: center;
  }
  
  .schedule-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
}


/* Expanded Mission Statement */
.mission-statement-full {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 48px;
}

.mission-content h2 {
font-size: 40px;
font-weight: 800;
line-height: 1.3;
margin-bottom: 32px;
letter-spacing: -1px;
}

.mission-content p {
font-size: 18px;
color: #525252;
line-height: 1.8;
margin-bottom: 24px;
}

.mission-content p strong {
color: #0a0a0a;
font-weight: 700;
}
/* Visual Demo Section - Dual Agent Display */
.visual-demo {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 48px;
  }
  
  .demo-container-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .agent-panel {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  
  .panel-header {
    background: #fafafa;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e5e5e5;
  }
  
  .panel-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .panel-title {
    font-size: 16px;
    font-weight: 700;
    color: #0a0a0a;
  }
  
  .panel-subtitle {
    font-size: 13px;
    color: #737373;
  }
  
  .live-badge {
    margin-left: auto;
    background: #667eea;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    animation: pulse-badge 2s ease-in-out infinite;
  }
  
  @keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
  }
  
  .call-content {
    padding: 24px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  /* Waveform Animation */
  .waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 60px;
    margin-bottom: 12px;
  }
  
  .wave-bar {
    width: 4px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
  }
  
  @keyframes wave {
    0%, 100% { height: 12px; }
    50% { height: 40px; }
  }
  
  /* Transcript Lines */
  .transcript-line {
    font-size: 14px;
    line-height: 1.6;
    padding: 10px 14px;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 3px solid #e5e5e5;
  }
  
  .transcript-line .speaker {
    font-weight: 700;
    color: #0a0a0a;
    margin-right: 8px;
  }
  
  .transcript-line.user-line {
    background: #f0f9ff;
    border-left-color: #667eea;
  }
  
  /* AI Insights */
  .ai-insight {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: #fffbeb;
    border: 1px solid #fde047;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: #854d0e;
    animation: slideIn 0.5s ease;
  }
  
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(-10px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .ai-insight svg {
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .ai-insight.client-insight {
    background: #f0f9ff;
    border-color: #bae6fd;
    color: #075985;
  }
  
  .ai-insight.lawyer-insight {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
  }
  
  .ai-insight.lawyer-insight.success {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
  }
  
  .ai-insight strong {
    font-weight: 700;
  }
  
  .demo-caption {
    text-align: center;
    margin-top: 32px;
  }
  
  .demo-caption p {
    font-size: 16px;
    color: #737373;
  }
  
  @media (max-width: 900px) {
    .demo-container-dual {
      grid-template-columns: 1fr;
      gap: 16px;
    }
  }


  /* Product Showcase */
.product-showcase {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 48px;
  }
  
  .showcase-header {
    text-align: center;
    margin-bottom: 80px;
  }
  
  .showcase-header h2 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  
  .showcase-header p {
    font-size: 20px;
    color: #525252;
  }
  
  .product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
  }
  
  .product-card-reverse {
    direction: rtl;
  }
  
  .product-card-reverse > * {
    direction: ltr;
  }
  
  .product-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 20px;
    background: #f0f9ff;
    color: #075985;
    margin-bottom: 16px;
  }
  
  .product-info h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
  }
  
  .product-desc {
    font-size: 18px;
    color: #525252;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  
  .product-features {
    list-style: none;
    margin-bottom: 32px;
  }
  
  .product-features li {
    font-size: 16px;
    color: #0a0a0a;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
  }
  
  .product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
  }
  
  /* Product Visual - Phone */
  .product-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .floating-phone {
    width: 280px;
    background: #0a0a0a;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: float-phone 4s ease-in-out infinite;
  }
  
  @keyframes float-phone {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
  
  .phone-header {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 8px;
  }
  
  .phone-speaker {
    width: 50px;
    height: 5px;
    background: #2a2a2a;
    border-radius: 3px;
  }
  
  .phone-camera {
    width: 8px;
    height: 8px;
    background: #2a2a2a;
    border-radius: 50%;
  }
  
  .phone-content {
    background: white;
    border-radius: 28px;
    padding: 40px 24px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .call-screen {
    text-align: center;
    width: 100%;
  }
  
  .avatar-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
  }
  
  .call-status {
    font-size: 13px;
    color: #737373;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .caller-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 32px;
  }
  
  .waveform-mini {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    height: 40px;
    margin: 24px 0;
  }
  
  .wave-bar-mini {
    width: 3px;
    background: #667eea;
    border-radius: 2px;
    animation: wave 1s ease-in-out infinite;
  }
  
  .wave-bar-mini:nth-child(1) { animation-delay: 0s; }
  .wave-bar-mini:nth-child(2) { animation-delay: 0.1s; }
  .wave-bar-mini:nth-child(3) { animation-delay: 0.2s; }
  .wave-bar-mini:nth-child(4) { animation-delay: 0.3s; }
  .wave-bar-mini:nth-child(5) { animation-delay: 0.4s; }
  
  .call-time {
    font-size: 16px;
    color: #0a0a0a;
    font-weight: 600;
  }
  
  /* Product Visual - Suggestion Panel */
  .suggestion-panel {
    width: 320px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: float-phone 4s ease-in-out infinite;
  }
  
  .suggestion-header {
    background: #fafafa;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #0a0a0a;
    border-bottom: 1px solid #e5e5e5;
  }
  
  .suggestion-item {
    padding: 16px 20px;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    animation: slideIn 0.5s ease;
  }
  
  .suggestion-item:last-child {
    border-bottom: none;
  }
  
  .suggestion-item.highlight {
    background: #f0fdf4;
    border-left: 3px solid #16a34a;
  }
  
  .suggestion-icon {
    width: 28px;
    height: 28px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    font-weight: 700;
  }
  
  .suggestion-item strong {
    font-weight: 700;
    color: #0a0a0a;
  }
  
  @media (max-width: 900px) {
    .product-card {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .product-card-reverse {
      direction: ltr;
    }
    
    .product-info h3 {
      font-size: 28px;
    }
    
    .floating-phone {
      max-width: 260px;
      margin: 0 auto;
    }
    
    .suggestion-panel {
      max-width: 300px;
      margin: 0 auto;
    }
  }


  /* ==========================================
   NEW STYLES FOR MODE-BASED LAYOUT
   ========================================== */

/* How It Works - Quick Overview */
.how-it-works-quick {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 48px;
    text-align: center;
  }
  
  .how-it-works-quick h2 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 60px;
    line-height: 1.2;
  }
  
  .modes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 48px;
  }
  
  .mode-quick-card {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
  }
  
  .mode-quick-card:hover {
    transform: translateY(-4px);
    border-color: #667eea;
  }
  
  .mode-quick-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
  }
  
  .active-badge {
    background: #dbeafe;
    color: #075985;
  }
  
  .passive-badge {
    background: #fef2f2;
    color: #991b1b;
  }
  
  .mode-icon-large {
    font-size: 64px;
    margin: 20px 0;
  }
  
  .mode-quick-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
  }
  
  .mode-metaphor {
    font-size: 15px;
    color: #737373;
    font-style: italic;
    margin-bottom: 16px;
  }
  
  .mode-quick-card > p {
    font-size: 16px;
    color: #525252;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  
  .entry-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }
  
  .entry-pill {
    background: #f5f5f5;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0a0a0a;
  }
  
  .outcome-callout {
    background: #f0fdf4;
    border: 2px solid #16a34a;
    border-radius: 12px;
    padding: 24px;
    font-size: 16px;
    line-height: 1.7;
    color: #0a0a0a;
  }
  
  .outcome-callout strong {
    font-weight: 700;
  }
  
  /* Product Showcase - Detailed View */
  .product-showcase {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 48px;
  }
  
  .showcase-header {
    text-align: center;
    margin-bottom: 80px;
  }
  
  .showcase-header h2 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  
  .showcase-header p {
    font-size: 20px;
    color: #525252;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .mode-card {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 60px;
  }
  
  .mode-card-alt {
    background: #fafafa;
  }
  
  .mode-header {
    margin-bottom: 40px;
  }
  
  .mode-badge-large {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
  }
  
  .mode-header h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
  }
  
  .mode-header p {
    font-size: 18px;
    color: #525252;
    line-height: 1.7;
  }
  
  .mode-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  
  .mode-content-reverse {
    grid-template-columns: 1fr 1fr;
  }
  
  .mode-content-reverse .mode-details {
    order: 1;
  }
  
  .mode-content-reverse .mode-visual {
    order: 2;
  }
  
  /* Meet Window Visual */
  .meet-window {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }
  
  .meet-header {
    background: #f9fafb;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .meet-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #0a0a0a;
  }
  
  .meet-participant {
    padding: 40px;
    text-align: center;
    background: #0a0a0a;
    position: relative;
  }
  
  .participant-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin: 0 auto 16px;
  }
  
  .participant-label {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  
  .speaking-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 20px;
  }
  
  .wave-mini {
    width: 3px;
    background: #34a853;
    border-radius: 2px;
    animation: wave 1s ease-in-out infinite;
  }
  
  .wave-mini:nth-child(1) { animation-delay: 0s; height: 8px; }
  .wave-mini:nth-child(2) { animation-delay: 0.15s; height: 16px; }
  .wave-mini:nth-child(3) { animation-delay: 0.3s; height: 12px; }
  .wave-mini:nth-child(4) { animation-delay: 0.45s; height: 8px; }
  
  @keyframes wave {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1.2); }
  }
  
  .meet-transcript {
    padding: 20px;
    background: white;
  }
  
  .transcript-msg {
    background: #f5f5f5;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
  }
  
  .transcript-msg strong {
    font-weight: 700;
  }
  
  /* Dashboard Preview */
  .dashboard-preview {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }
  
  .dashboard-header {
    background: #fafafa;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
  }
  
  .status-live {
    color: #dc2626;
    font-weight: 700;
    animation: pulse 2s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }
  
  .suggestion-list {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .suggestion-item-dash {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 14px;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 3px solid #e5e5e5;
    font-size: 14px;
    animation: slideIn 0.4s ease;
  }
  
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(-10px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .suggestion-item-dash .sug-icon {
    font-size: 18px;
    flex-shrink: 0;
  }
  
  .suggestion-item-dash strong {
    font-weight: 700;
  }
  
  .suggestion-item-dash.highlight-dash {
    background: #f0fdf4;
    border-left-color: #16a34a;
  }
  
  .dashboard-note {
    padding: 16px 20px;
    background: #fef3c7;
    border-top: 1px solid #fde047;
    font-size: 13px;
    color: #854d0e;
    text-align: center;
  }
  
  /* Mode Details */
  .mode-details h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 32px;
  }
  
  .mode-details h4:first-child {
    margin-top: 0;
  }
  
  .join-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }
  
  .join-option {
    display: flex;
    align-items: start;
    gap: 16px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 12px;
  }
  
  .join-icon {
    font-size: 32px;
    flex-shrink: 0;
  }
  
  .join-option strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  
  .join-option p {
    font-size: 14px;
    color: #525252;
    line-height: 1.5;
  }
  
  .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
  }
  
  .feature-list li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: #0a0a0a;
  }
  
  .feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
    font-size: 18px;
  }
  
  .best-for {
    background: #eff6ff;
    padding: 16px;
    border-radius: 8px;
    border-left: 3px solid #2563eb;
    font-size: 15px;
    line-height: 1.6;
  }
  
  .best-for strong {
    font-weight: 700;
  }
  
  /* Responsive */
  @media (max-width: 968px) {
    .modes-grid {
      grid-template-columns: 1fr;
    }
  
    .mode-content-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  
    .mode-content-reverse .mode-details {
      order: 2;
    }
  
    .mode-content-reverse .mode-visual {
      order: 1;
    }
  
    .how-it-works-quick h2,
    .showcase-header h2 {
      font-size: 36px;
    }
  
    .mode-header h3 {
      font-size: 28px;
    }
  }

  /* ==========================================
   MINIMAL LANDING PAGE STYLES
   ========================================== */

/* Hero Large Button */
.btn-large {
    padding: 18px 36px;
    font-size: 18px;
  }
  
  /* Capabilities Section */
  .capabilities-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  
  .capability-card {
    text-align: center;
    padding: 40px 32px;
    background: white;
    border-radius: 16px;
    border: 2px solid #e5e5e5;
    transition: transform 0.3s, border-color 0.3s;
  }
  
  .capability-card:hover {
    transform: translateY(-4px);
    border-color: #667eea;
  }
  
  .capability-icon {
    font-size: 64px;
    margin-bottom: 24px;
  }
  
  .capability-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
  }
  
  .capability-card p {
    font-size: 16px;
    color: #525252;
    line-height: 1.7;
  }
  
  /* Value Section */
  .value-section {
    max-width: 1100px;
    margin: 120px auto;
    padding: 0 48px;
    text-align: center;
  }
  
  .value-section h2 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 60px;
    line-height: 1.2;
  }
  
  .value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
  }
  
  .value-card {
    padding: 32px;
    background: #fafafa;
    border-radius: 16px;
  }
  
  .value-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #667eea;
    margin-bottom: 12px;
  }
  
  .value-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
  }
  
  .value-card p {
    font-size: 16px;
    color: #525252;
    line-height: 1.7;
  }
  
  /* Stats Section */
  .stats-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 60px 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    text-align: center;
    color: white;
  }
  
  .stat-number {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 8px;
  }
  
  .stat-label {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
  }
  
  /* How It Works Teaser */
  .how-it-works-teaser {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 48px;
    text-align: center;
  }
  
  .how-it-works-teaser h2 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  
  .how-it-works-teaser p {
    font-size: 20px;
    color: #525252;
    line-height: 1.6;
    margin-bottom: 32px;
  }
  
  /* ==========================================
     HOW IT WORKS PAGE STYLES
     ========================================== */
  
  .how-overview {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 48px;
  }
  
  .how-overview-content h2 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 24px;
    line-height: 1.2;
  }
  
  .how-overview-content p {
    font-size: 18px;
    color: #525252;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .how-overview-content strong {
    font-weight: 700;
    color: #0a0a0a;
  }
  
  /* Mode Detail Section */
  .mode-detail-section {
    background: white;
    padding: 80px 0;
  }
  
  .mode-detail-alt {
    background: #fafafa;
  }
  
  .mode-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
  }
  
  .mode-detail-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .mode-detail-header h2 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  
  .mode-metaphor {
    font-size: 18px;
    color: #737373;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }
  
  .mode-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
  }
  
  .mode-detail-reverse .mode-detail-content {
    order: 1;
  }
  
  .mode-detail-reverse .mode-detail-visual {
    order: 2;
  }
  
  .mode-detail-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 40px;
  }
  
  .mode-detail-content h3:first-child {
    margin-top: 0;
  }
  
  .connection-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .connection-option {
    display: flex;
    align-items: start;
    gap: 16px;
    padding: 20px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
  }
  
  .mode-detail-alt .connection-option {
    background: #fafafa;
    border: 1px solid #d4d4d4;
  }
  
  .connection-icon {
    font-size: 32px;
    flex-shrink: 0;
  }
  
  .connection-option strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  
  .connection-option p {
    font-size: 14px;
    color: #525252;
    line-height: 1.6;
  }
  
  .process-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 0 0 40px 0;
  }
  
  .process-list li {
    counter-increment: step-counter;
    position: relative;
    padding: 12px 0 12px 48px;
    font-size: 16px;
    line-height: 1.7;
    color: #0a0a0a;
  }
  
  .process-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 10px;
    width: 32px;
    height: 32px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
  }
  
  .best-for-box {
    background: #eff6ff;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    font-size: 16px;
    line-height: 1.7;
  }
  
  .best-for-box strong {
    font-weight: 700;
  }
  
  /* Mode Features List */
  .mode-features-list {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid #e5e5e5;
  }
  
  .mode-features-list h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
    text-align: center;
  }
  
  .features-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .feature-item-detailed {
    display: flex;
    align-items: start;
    gap: 16px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
  }
  
  .feature-check {
    width: 32px;
    height: 32px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
  }
  
  .feature-item-detailed strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  
  .feature-item-detailed p {
    font-size: 14px;
    color: #525252;
    line-height: 1.6;
  }
  
  /* Deliverables Section */
  .deliverables-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 48px;
    text-align: center;
  }
  
  .deliverables-section h2 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  
  .deliverables-intro {
    font-size: 18px;
    color: #525252;
    margin-bottom: 60px;
    line-height: 1.7;
  }
  
  .deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: left;
  }
  
  .deliverable-card {
    padding: 32px;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    transition: transform 0.3s, border-color 0.3s;
  }
  
  .deliverable-card:hover {
    transform: translateY(-4px);
    border-color: #667eea;
  }
  
  .deliverable-icon {
    font-size: 48px;
    margin-bottom: 16px;
  }
  
  .deliverable-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  
  .deliverable-card p {
    font-size: 15px;
    color: #525252;
    line-height: 1.7;
  }
  
  /* Responsive */
  @media (max-width: 968px) {
    .capabilities-section,
    .value-grid,
    .stats-section,
    .features-two-col,
    .deliverables-grid {
      grid-template-columns: 1fr;
    }
  
    .mode-detail-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .mode-detail-reverse .mode-detail-content {
      order: 2;
    }
  
    .mode-detail-reverse .mode-detail-visual {
      order: 1;
    }
  
    .value-section h2,
    .mode-detail-header h2,
    .deliverables-section h2,
    .how-it-works-teaser h2 {
      font-size: 36px;
    }
  
    .stat-number {
      font-size: 48px;
    }
  }