/* Landing Page Styles */
:root {
  --primary-color: #007bff;
  /* Dark liquid-glass public theme */
  :root {
    --primary-color: rgba(255,255,255,0.96);
    --primary-dark: rgba(255,255,255,0.84);
    --secondary-color: rgba(255,255,255,0.68);
    --success-color: rgba(255,255,255,0.96);
    --danger-color: rgba(255,255,255,0.96);
    --warning-color: rgba(255,255,255,0.96);
    --info-color: rgba(255,255,255,0.96);
    --light-color: rgba(255,255,255,0.96);
    --dark-color: #000;
    --gradient-primary: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    --gradient-secondary: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 40px rgba(0, 0, 0, 0.2);
  }

  * {
    box-sizing: border-box;
  }

  html {
    overflow-x: hidden;
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Barlow', sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    background:
      radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 28%),
      radial-gradient(circle at 80% 10%, rgba(255,255,255,0.06), transparent 22%),
      linear-gradient(180deg, #050505 0%, #000 45%, #000 100%);
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 120px 120px;
    mask-image: radial-gradient(circle at center, black 42%, transparent 100%);
    opacity: 0.32;
  }

  .navbar {
    background: rgba(0,0,0,0.25) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .navbar-brand,
  .brand-text,
  .brand-subtitle {
    color: #fff !important;
  }

  .brand-text {
    color: transparent !important;
    position: relative;
    display: inline-block;
  }

  .brand-text::after {
    content: 'Awesome Innovators';
    position: absolute;
    inset: 0;
    color: #fff;
  }

  .brand-subtitle {
    color: transparent !important;
    position: relative;
    display: inline-block;
  }

  .brand-subtitle::after {
    content: 'Workflow Platform';
    position: absolute;
    inset: 0;
    color: rgba(255,255,255,0.72);
  }

  .navbar-nav .nav-link {
    color: rgba(255,255,255,0.8) !important;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: #fff !important;
  }

  .hero-section,
  .features-section,
  .integrations-section,
  .cta-section,
  .about-hero-section,
  .mission-section,
  .story-section,
  .team-section,
  .culture-section,
  .about-cta-section,
  .features-hero-section,
  .core-features-section,
  .advanced-features-section,
  .features-cta-section,
  .security-hero-section,
  .security-features-section,
  .compliance-section,
  .security-practices-section,
  .legal-hero-section,
  .legal-content-section,
  .help-hero-section,
  .help-categories-section,
  .faq-section,
  .help-contact-section,
  .status-hero-section,
  .status-content-section,
  .contact-section,
  .pricing-hero-section,
  .pricing-section,
  .privacy-section,
  .terms-section,
  .gdpr-section {
    background: transparent !important;
    color: #fff;
  }

  .hero-section,
  .about-hero-section,
  .features-hero-section,
  .security-hero-section,
  .legal-hero-section,
  .help-hero-section,
  .status-hero-section,
  .pricing-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .hero-section::before,
  .about-hero-section::before,
  .features-hero-section::before,
  .security-hero-section::before,
  .legal-hero-section::before,
  .help-hero-section::before,
  .status-hero-section::before,
  .pricing-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.18));
  }

  .hero-title,
  .section-title,
  .cta-title,
  .hero-subtitle,
  .section-subtitle,
  .cta-subtitle,
  .legal-content h2,
  .legal-content h3,
  .help-category-card h3,
  .help-category-card h4,
  .pricing-card h3,
  .pricing-card h4,
  .contact-section h1,
  .contact-section h3 {
    color: #fff !important;
  }

  .hero-title,
  .section-title,
  .cta-title,
  .legal-content h2,
  .help-category-card h3,
  .pricing-card h3,
  .pricing-card h4,
  .contact-section h1,
  .contact-section h3 {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    letter-spacing: -0.04em;
  }

  .hero-subtitle,
  .section-subtitle,
  .cta-subtitle,
  .lead,
  .footer-description,
  .legal-content p,
  .legal-content li,
  .help-category-card p,
  .pricing-card p,
  .contact-section p,
  .status-card p,
  .mission-card p,
  .team-card p,
  .culture-value p,
  .feature-card p,
  .advanced-feature-card p,
  .integration-name {
    color: rgba(255,255,255,0.84) !important;
  }

  .card,
  .feature-card,
  .advanced-feature-card,
  .mission-card,
  .team-card,
  .culture-value,
  .integration-card,
  .help-category-card,
  .status-card,
  .pricing-card,
  .legal-content,
  .contact-info .card,
  .faq .accordion-item,
  .about-visual,
  .feature-highlight,
  .compliance-card,
  .practice-item,
  .search-box,
  .overall-status,
  .subscribe-options,
  .cta-panel,
  .footer-panel {
    background: rgba(255,255,255,0.02) !important;
    color: #fff !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 16px 50px rgba(0,0,0,0.22);
    border-radius: 1.25rem;
  }

  .btn,
  .nav-link,
  .footer-links a,
  .social-link,
  .help-links a,
  .footer-social a {
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }

  .btn:hover,
  .social-link:hover,
  .footer-social a:hover {
    transform: translateY(-1px);
  }

  .btn-primary {
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
    border-radius: 9999px !important;
  }

  .btn-primary:hover {
    background: rgba(255,255,255,0.88) !important;
    color: #000 !important;
  }

  .btn-outline-primary,
  .btn-outline-light,
  .btn-light {
    color: #fff !important;
    border-color: rgba(255,255,255,0.24) !important;
    border-radius: 9999px !important;
  }

  .btn-outline-primary:hover,
  .btn-outline-light:hover,
  .btn-light:hover {
    background: rgba(255,255,255,0.08) !important;
    color: #fff !important;
  }

  .feature-icon,
  .feature-highlight-icon,
  .mission-icon,
  .team-avatar,
  .category-icon,
  .compliance-icon,
  .practice-icon,
  .contact-icon,
  .integration-icon,
  .status-indicator,
  .badge,
  .security-badge,
  .pricing-badge,
  .hero-badge,
  .search-box .btn,
  .footer-social .social-link {
    background: rgba(255,255,255,0.04) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
  }

  .footer,
  .footer-section {
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 2rem;
  }

  .footer-title,
  .footer-title h5,
  .footer-title h6 {
    color: #fff !important;
  }

  .footer-links a,
  .footer-social a,
  .social-link,
  .help-links a {
    color: rgba(255,255,255,0.78) !important;
  }

  .footer-links a:hover,
  .help-links a:hover,
  .footer-social a:hover,
  .social-link:hover {
    color: #fff !important;
  }

  .footer-divider,
  hr {
    border-color: rgba(255,255,255,0.08) !important;
    opacity: 1;
  }

  .text-gradient,
  .highlight-text {
    color: #fff !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
  }

  .animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 768px) {
    .hero-section,
    .about-hero-section,
    .features-hero-section,
    .security-hero-section,
    .legal-hero-section,
    .help-hero-section,
    .status-hero-section,
    .pricing-hero-section {
      min-height: auto;
      padding-top: 6rem;
      padding-bottom: 3rem;
    }

    .hero-title,
    .section-title,
    .cta-title {
      font-size: clamp(2.3rem, 12vw, 3.5rem) !important;
    }
  }
  color: var(--primary-color) !important;
}

/* Footer */
footer {
  margin-top: auto;
}

footer .social-links a {
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

footer .social-links a:hover {
  color: var(--primary-color) !important;
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--info-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--info-color));
  border: none;
  color: white;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, var(--info-color), var(--primary-color));
  color: white;
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}
