/* ===== CSS VARIABLES ===== */

/* Fallback for JavaScript loading - show content after 2 seconds if JS fails */
body.js-loading {
  opacity: 0;
  visibility: hidden;
  animation: showContentFallback 0.1s ease-in-out 2s forwards;
}

@keyframes showContentFallback {
  to {
    opacity: 1;
    visibility: visible;
  }
}

:root {
  --fire: #EA9259;
  --fire-glow: #FF6B35;
  --fire-bright: #FFD700;
  --fire-dark: #8B0000;
  --fire-orange: #EA9259;
  --fire-red: #FF6B35;
  --bg: #000000;
  --fg: #fff;
  --text-muted: rgba(255,255,255,0.45);
  --text-bright: rgba(255,255,255,1);
  --text-secondary: rgba(255,255,255,0.55);
  --glow-color: #EA9259;
  --color-primary: #EA9259;
  --color-background: #0a0a0a;
  --color-background-alt: #181818;
  --color-text: #f5f5f5;
  --color-accent: #ffffff;
  --font-system: 'SF Pro Display', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --container-max: 800px;
  --space-xs: 1rem;
  --space-sm: 2rem;
  --space-md: 4rem;
  --space-lg: 6rem;
  --space-xl: 10rem;
  --space-2xl: 12rem;
  --space-3xl: 16rem;
  --section-padding: 6rem;
  --grid-gap-xs: 1rem;
  --grid-gap-sm: 1.5rem;
  --grid-gap-md: 2rem;
  --grid-gap-lg: 3rem;
  --grid-gap-xl: 4rem;
  --grid-gap-2xl: 6rem;
  --icon-sm: 16px;
  --icon-md: 24px;
  --icon-lg: 40px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

/* ===== ANIMATIONS STYLES ===== */

/* Smooth Animation System for Interactive Elements */
/* Only applies to desktop users - mobile hover effects remain disabled */

/* Base transition for all interactive elements */
@media (hover: hover) and (pointer: fine) {
  /* Universal smooth transitions for interactive elements */
  .cta-button,
  .nav-cta-button,
  .body-button,
  .body-button-transparent,
  .secondary-button,
  .focus-button,
  .mobile-cta-button,
  .focus-banner-cta-button,
  .get-started-button,
  .manifesto-button,
  .navigation-card,
  .feature-card,
  .benefit-card,
  .link-card,
  .use-case-card,
  .who-helps-card,
  .faq-question,
  .faq-link,
  .vision-nav-tag,
  .page-nav-link,
  .feature,
  .nav-link,
  .mobile-nav-link,
  .social-link,
  .footer-heading-link,
  .footer-list li a,
  .contact-link,
  .mobile-menu-toggle,
  .mobile-nav-close,
  .mobile-nav-cta-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity, box-shadow, background-color;
  }

  /* Smooth hover animations for buttons */
  .cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 35px rgba(234, 146, 89, 0.4), 0 0 50px rgba(255, 107, 53, 0.2);
  }

  .nav-cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(234, 146, 89, 0.3);
  }

  .body-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
  }

  .body-button-transparent:hover {
    transform: translateY(-3px) scale(1.03);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
  }

  /* Smooth hover animations for cards */
  .navigation-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(234, 146, 89, 0.1);
    background: rgba(255, 255, 255, 0.05);
  }

  .feature-card:hover,
  .use-case-card:hover,
  .who-helps-card:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 15px rgba(234, 146, 89, 0.08);
    background: rgba(255, 255, 255, 0.03);
  }

  /* Smooth hover animations for navigation */
  .nav-link:hover {
    transform: translateY(-1px);
    color: var(--fire);
    text-shadow: 0 0 8px rgba(234, 146, 89, 0.3);
  }

  .mobile-nav-link:hover {
    transform: none !important;
    color: inherit !important;
  }

  /* Smooth hover animations for FAQ */
  .faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  /* Smooth hover animations for social links */
  .social-link:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 15px rgba(234, 146, 89, 0.2);
  }

  /* Smooth hover animations for footer links */
  .footer-heading-link:hover,
  .footer-list li a:hover {
    color: rgba(255, 255, 255, 1);
  }

  /* Smooth hover animations for contact links */
  .contact-link:hover {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 0 8px rgba(234, 146, 89, 0.3);
    text-decoration: none;
  }

  /* Smooth hover animations for mobile menu elements */
  .mobile-menu-toggle:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.1);
  }

  .mobile-nav-close:hover {
    transform: none !important;
    background: inherit !important;
  }

  .mobile-nav-cta-button:hover {
    transform: none !important;
    box-shadow: inherit !important;
    background: inherit !important;
  }

  /* Icon animations within buttons */
  .body-button:hover .arrow-icon,
  .body-button:hover .apple-icon {
    transform: scale(1.1);
  }

  .nav-cta-button:hover .apple-icon,
  .mobile-nav-cta-button:hover .apple-icon {
    transform: none !important;
  }

  /* Smooth focus states */
  .cta-button:focus-visible,
  .nav-cta-button:focus-visible,
  .body-button:focus-visible,
  .mobile-nav-cta-button:focus-visible {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 0 3px rgba(234, 146, 89, 0.3), 0 8px 25px rgba(234, 146, 89, 0.2);
  }

  .navigation-card:focus-visible,
  .feature-card:focus-visible,
  .use-case-card:focus-visible,
  .who-helps-card:focus-visible {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 0 0 3px rgba(234, 146, 89, 0.3), 0 8px 25px rgba(0, 0, 0, 0.2);
  }

  /* Enhanced click/tap animations for better feedback */
  .cta-button:active,
  .nav-cta-button:active,
  .body-button:active,
  .mobile-nav-cta-button:active,
  .mobile-menu-toggle:active,
  .mobile-nav-close:active {
    transform: translateY(0) scale(0.95);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .navigation-card:active,
  .feature-card:active,
  .use-case-card:active,
  .who-helps-card:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .nav-link:active,
  .mobile-nav-link:active,
  .social-link:active,
  .footer-heading-link:active,
  .footer-list li a:active,
  .contact-link:active,
  .faq-question:active {
    transform: translateY(0) scale(0.95);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Ripple effect for buttons */
  .cta-button,
  .nav-cta-button,
  .body-button,
  .mobile-nav-cta-button {
    position: relative;
    overflow: hidden;
  }

  .cta-button::after,
  .nav-cta-button::after,
  .body-button::after,
  .mobile-nav-cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    pointer-events: none;
  }

  .cta-button.clicked::after,
  .nav-cta-button.clicked::after,
  .body-button.clicked::after,
  .mobile-nav-cta-button.clicked::after {
    width: 200px;
    height: 200px;
  }

  /* Pulse animation for important buttons */
  .cta-button.pulse {
    animation: pulseGlow 2s ease-in-out infinite;
  }

  @keyframes pulseGlow {
    0%, 100% {
      box-shadow: 0 0 0 0 rgba(234, 146, 89, 0.4);
    }
    50% {
      box-shadow: 0 0 0 10px rgba(234, 146, 89, 0);
    }
  }

  /* Smooth loading states */
  .cta-button.loading,
  .nav-cta-button.loading,
  .body-button.loading {
    opacity: 0.7;
    pointer-events: none;
    transform: scale(0.98);
  }

  .cta-button.loading::before,
  .nav-cta-button.loading::before,
  .body-button.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .dropdown a:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  /* Smooth mobile menu animations */
  .mobile-nav.open {
    transform: translateX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-nav.open .mobile-nav-links {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  }

  /* Smooth scroll indicator animation */
  .scroll-indicator:hover {
    transform: translateX(-50%) translateY(-3px) scale(1.1);
    color: rgba(255, 255, 255, 0.9);
  }

  /* Smooth page transition animations */
  .page-transition-overlay.active {
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Smooth starfield animations */
  .hero-stars.loaded {
    opacity: 1;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hero-stars .star,
  .hero-stars .space-cloud {
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Smooth FAQ answer animations */
  .faq-answer.active {
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  }

  .faq-answer:not(.active) {
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Additional animation classes for JavaScript interactions */
  .clicking {
    transform: scale(0.98) !important;
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .touching {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: scale(0.99) !important;
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  /* Smooth page transitions */
  .page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .page-transition-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Smooth scroll behavior */
  html {
    scroll-behavior: smooth;
  }

  /* Enhanced focus indicators */
  .cta-button:focus-visible,
  .nav-cta-button:focus-visible,
  .body-button:focus-visible,
  .mobile-nav-cta-button:focus-visible,
  .navigation-card:focus-visible,
  .feature-card:focus-visible,
  .use-case-card:focus-visible,
  .who-helps-card:focus-visible,
  .nav-link:focus-visible,
  .mobile-nav-link:focus-visible,
  .social-link:focus-visible,
  .footer-heading-link:focus-visible,
  .footer-list li a:focus-visible,
  .contact-link:focus-visible,
  .faq-question:focus-visible {
    outline: 2px solid var(--fire);
    outline-offset: 2px;
  }
}

/* ===== RESET STYLES ===== */

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

/* Ensure all elements load immediately without animation delays */
*, *::before, *::after {
  animation-delay: 0s !important;
  animation-duration: 0s !important;
}

/* Override any fade-in or slide-up animations */
.fade-in, .fadeIn, .fade-in-up, .fadeInUp {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* Ensure dropdowns are always left-aligned regardless of page text-align */
.dropdown,
.dropdown *,
.nav-item,
.nav-links,
.main-nav {
  text-align: left !important;
}

/* Force contact page email links to turn white without underline */
body.contact-page .contact-link:hover,
body.contact-page .contact-link:focus {
  color: rgba(255, 255, 255, 1) !important;
  background-size: 0 1px !important;
  text-decoration: none !important;
  transform: none !important;
}

/* Force footer menu items to turn white on hover */
.footer-heading-link:hover,
.footer-list li a:hover,
.footer-list.footer-content a:hover {
  color: rgba(255, 255, 255, 1) !important;
  transition: color 0.3s ease !important;
}

/* AGGRESSIVE OVERRIDE - Force logo hover effects */
.nav-logo:hover {
  opacity: 0.7 !important;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.footer-logo:hover {
  opacity: 0.7 !important;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

/* AGGRESSIVE OVERRIDE - Force footer headings to turn white on hover */
.footer-heading:hover,
.footer-heading-link:hover {
  color: rgba(255, 255, 255, 1) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

/* AGGRESSIVE OVERRIDE - Force social link hover effects */
.social-link:hover {
  transform: translateY(-3px) scale(1.15) !important;
  box-shadow: 0 6px 20px rgba(234, 146, 89, 0.25) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.social-link:hover svg path,
.social-link:hover svg g path,
.social-link:hover svg rect {
  fill: rgba(255, 255, 255, 1) !important;
  transition: fill 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

/* Force social link hover effects to work on desktop */
@media (hover: hover) and (pointer: fine) {
  .social-link:hover {
    transform: translateY(-3px) scale(1.15) !important;
    box-shadow: 0 6px 20px rgba(234, 146, 89, 0.25) !important;
    background: rgba(255, 255, 255, 0.1) !important;
  }
  
  .social-link:hover svg path,
  .social-link:hover svg g path,
  .social-link:hover svg rect {
    fill: rgba(255, 255, 255, 1) !important;
  }
}

/* Force social icon color change on hover - opaque white */
.social-link:hover svg path,
.social-link:hover svg g path,
.social-link:hover svg rect {
  fill: rgba(255, 255, 255, 1) !important;
  transition: fill 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

/* Force footer elements to stay in place on hover */
.footer-heading-link:hover,
.footer-list li a:hover,
.footer-heading:hover {
  transform: none !important;
}

/* Force FAQ elements to stay in place on hover */
.faq-question:hover,
.faq-link:hover {
  transform: none !important;
}

/* Force dropdown items to not shift right */
.dropdown a:hover {
  transform: none !important;
  background: rgba(255, 255, 255, 0.1) !important;
  transition: background-color 0.3s ease !important;
}

/* ===== FORCE HOVER EFFECTS FOR TESTING ===== */
/* Temporarily force hover effects to work on all devices */

/* Ensure all buttons have smooth transitions */
.cta-button,
.nav-cta-button,
.body-button,
.body-button-transparent {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

/* Force hover effects with !important to override any conflicts */
.cta-button:hover,
.nav-cta-button:hover,
.body-button:hover,
.body-button-transparent:hover {
  transform: translateY(-5px) scale(1.05) !important;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.cta-button:hover {
  box-shadow: 0 15px 40px rgba(234, 146, 89, 0.5), 0 0 60px rgba(255, 107, 53, 0.3) !important;
  background: rgba(234, 146, 89, 0.1) !important;
}

.nav-cta-button:hover {
  box-shadow: 0 10px 30px rgba(234, 146, 89, 0.4) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.body-button:hover {
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.body-button-transparent:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2) !important;
}

/* Force card hover effects */
.navigation-card,
.feature-card,
.use-case-card,
.who-helps-card {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.navigation-card:hover,
.feature-card:hover,
.use-case-card:hover,
.who-helps-card:hover {
  transform: translateY(-8px) scale(1.03) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 25px rgba(234, 146, 89, 0.15) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

/* ===== ENHANCED HOVER TRANSITIONS ===== */
/* Smooth transitions for desktop users with hover capability */

@media (hover: hover) and (pointer: fine) {
  /* Enhanced transitions for all interactive elements */
  *, *::before, *::after {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }

  /* Smooth hover animations for buttons with enhanced curves */
  .cta-button {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, box-shadow, background-color;
  }

  .cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 35px rgba(234, 146, 89, 0.4), 0 0 50px rgba(255, 107, 53, 0.2);
  }

  .nav-cta-button {
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, box-shadow, background-color;
  }

  .nav-cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(234, 146, 89, 0.3);
  }

  .body-button {
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, box-shadow, background-color;
  }

  .body-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
  }

  .body-button-transparent {
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, box-shadow, background-color;
  }

  .body-button-transparent:hover {
    transform: translateY(-3px) scale(1.03);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
  }

  /* Smooth hover animations for cards with enhanced effects */
  .navigation-card {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, box-shadow, background-color;
  }

  .navigation-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(234, 146, 89, 0.15);
    background: rgba(255, 255, 255, 0.08);
  }

  .feature-card,
  .use-case-card,
  .who-helps-card {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, box-shadow, background-color;
  }

  .feature-card:hover,
  .use-case-card:hover,
  .who-helps-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25), 0 0 20px rgba(234, 146, 89, 0.1);
    background: rgba(255, 255, 255, 0.05);
  }

  /* Smooth hover animations for navigation */
  .nav-link {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, color, text-shadow;
  }

  .nav-link:hover {
    transform: translateY(-2px);
    color: var(--fire);
    text-shadow: 0 0 12px rgba(234, 146, 89, 0.4);
  }

  .mobile-nav-link {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, color;
  }

  .mobile-nav-link:hover {
    color: inherit !important;
    transform: none !important;
  }

  /* Smooth hover animations for FAQ */
  .faq-question {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, background-color, box-shadow;
  }

  .faq-question:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  /* Smooth hover animations for social links */
  .social-link {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, box-shadow;
  }

  .social-link:hover {
    transform: translateY(-3px) scale(1.15);
    box-shadow: 0 6px 20px rgba(234, 146, 89, 0.25);
  }

  /* Social icon color change on hover - opaque white */
  .social-link:hover svg path,
  .social-link:hover svg g path {
    fill: rgba(255, 255, 255, 1) !important;
    transition: fill 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
  }

  /* Smooth hover animations for footer links */
  .footer-heading-link,
  .footer-list li a {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, color;
  }

  .footer-heading-link:hover,
  .footer-list li a:hover {
    color: rgba(255, 255, 255, 1);
  }

  /* Smooth hover animations for contact links */
  .contact-link {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, color, text-shadow;
  }

  .contact-link:hover {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 0 12px rgba(234, 146, 89, 0.4);
    text-decoration: none;
  }

  /* Smooth hover animations for mobile menu elements */
  .mobile-menu-toggle {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, background-color;
  }

  .mobile-menu-toggle:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.15);
  }

  .mobile-nav-close {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }

  .mobile-nav-close:hover {
    transform: none !important;
    background: inherit !important;
  }

  .mobile-nav-cta-button {
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow;
  }

  .mobile-nav-cta-button:hover {
    transform: none !important;
    box-shadow: inherit !important;
    background: inherit !important;
  }

  /* Icon animations within buttons */
  .body-button:hover .arrow-icon,
  .body-button:hover .apple-icon {
    transform: translateX(6px);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .nav-cta-button:hover .apple-icon,
  .mobile-nav-cta-button:hover .apple-icon {
    transform: scale(1.15);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  /* Smooth dropdown animations - removed */

  /* Smooth scroll indicator animation */
  .scroll-indicator {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, color;
  }

  .scroll-indicator:hover {
    transform: translateX(-50%) translateY(-4px) scale(1.15);
    color: rgba(255, 255, 255, 0.95);
  }

  /* Enhanced logo hover effect */
  .nav-logo {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: opacity;
  }

  .nav-logo:hover {
    opacity: 0.7;
  }

  /* Additional button types with enhanced transitions */
  .secondary-button {
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow, background-color;
  }

  .secondary-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
  }

  .focus-button {
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow, background-color;
  }

  .focus-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(234, 146, 89, 0.2);
  }

  .get-started-button {
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow, background-color;
  }

  .get-started-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(234, 146, 89, 0.3);
  }

  .manifesto-button {
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow, background-color;
  }

  .manifesto-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
  }

  .focus-banner-cta-button {
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow, background-color;
  }

  .focus-banner-cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(234, 146, 89, 0.3);
  }

  /* Enhanced transitions for form elements */
  input[type="text"],
  input[type="email"],
  input[type="password"],
  textarea,
  select {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: border-color, box-shadow, background-color;
  }

  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="password"]:focus,
  textarea:focus,
  select:focus {
    transform: scale(1.02);
    box-shadow: 0 0 0 3px rgba(234, 146, 89, 0.2);
  }

  /* Enhanced transitions for content links */
  .content-section a {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: color, text-shadow, transform;
  }

  .content-section a:hover {
    transform: translateY(-1px);
    text-shadow: 0 0 8px rgba(234, 146, 89, 0.3);
  }

  /* Enhanced transitions for page navigation */
  .page-nav-link {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, color, background-color;
  }

  .page-nav-link:hover {
    transform: translateY(-2px);
    color: var(--fire);
    background: rgba(255, 255, 255, 0.05);
  }

  /* Enhanced transitions for vision navigation tags */
  .vision-nav-tag {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, background-color, box-shadow;
  }

  .vision-nav-tag:hover {
    transform: translateY(-2px) scale(1.05);
    background: rgba(234, 146, 89, 0.1);
    box-shadow: 0 4px 15px rgba(234, 146, 89, 0.2);
  }

  /* Enhanced transitions for FAQ links */
  .faq-link {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, color, text-shadow;
  }

  .faq-link:hover {
    color: var(--fire);
    text-shadow: 0 0 8px rgba(234, 146, 89, 0.3);
  }

  /* Enhanced transitions for explore cards */
  .explore-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow, background-color;
  }

  .explore-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25), 0 0 20px rgba(234, 146, 89, 0.1);
    background: rgba(255, 255, 255, 0.05);
  }

  /* Enhanced transitions for benefit cards */
  .benefit-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow, background-color;
  }

  .benefit-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25), 0 0 20px rgba(234, 146, 89, 0.1);
    background: rgba(255, 255, 255, 0.05);
  }

  /* Enhanced transitions for link cards */
  .link-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow, background-color;
  }

  .link-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25), 0 0 20px rgba(234, 146, 89, 0.1);
    background: rgba(255, 255, 255, 0.05);
  }

  /* Enhanced transitions for features */
  .feature {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow, background-color;
  }

  .feature:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25), 0 0 20px rgba(234, 146, 89, 0.1);
    background: rgba(255, 255, 255, 0.05);
  }
}

/* ===== MOBILE HOVER PREVENTION ===== */
/* Disable ALL hover effects on touch devices for better mobile UX */

@media (hover: none) and (pointer: coarse) {
  /* Disable hover states on touch devices, but preserve normal animations and transitions */
  
  /* Disable all hover states */
  .cta-button:hover,
  .mobile-cta-button:hover,
  .body-button:hover,
  .body-button-transparent:hover,
  .secondary-button:hover,
  .focus-button:hover,
  .nav-cta-button:hover,
  .mobile-nav-cta-button:hover,
  .focus-banner-cta-button:hover,
  .get-started-button:hover,
  .manifesto-button:hover,
  .explore-card:hover,
  .navigation-card:hover,
  .feature-card:hover,
  .benefit-card:hover,
  .link-card:hover,
  .use-case-card:hover,
  .who-helps-card:hover,
  .faq-question:hover,
  .faq-link:hover,
  .vision-nav-tag:hover,
  .page-nav-link:hover,
  .feature:hover {
    background: inherit !important;
    border-color: inherit !important;
    color: inherit !important;
    transform: none !important;
    box-shadow: inherit !important;
    opacity: inherit !important;
  }
  
  /* Disable hover pseudo-elements */
  .cta-button:hover::before,
  .cta-button:hover::after,
  .body-button:hover::before,
  .nav-cta-button:hover::before,
  .mobile-cta-button:hover::before,
  .focus-banner-cta-button:hover::before,
  .get-started-button:hover::before,
  .benefit-card:hover::before,
  .feature:hover::before {
    opacity: 0 !important;
    left: -100% !important;
    transform: none !important;
  }
  
  /* Disable navigation hover effects */
  .nav-logo:hover,
  .nav-link:hover,
  .mobile-nav-logo:hover,
  .mobile-nav-link:hover,
  .mobile-nav-close:hover,
  .mobile-nav-submenu a:hover,
  .mobile-nav-cta-button:hover,
  .mobile-menu-toggle:hover {
    opacity: inherit !important;
    transform: none !important;
    color: inherit !important;
    background: inherit !important;
    text-shadow: none !important;
    border-color: inherit !important;
    box-shadow: inherit !important;
  }
  
  /* Disable ALL mobile navigation hover effects */
  .mobile-nav *:hover {
    transform: none !important;
    color: inherit !important;
    background: inherit !important;
    opacity: inherit !important;
    text-shadow: none !important;
    border-color: inherit !important;
    box-shadow: inherit !important;
  }
  
  /* Disable dropdown hover effects on mobile */
  .nav-item:hover .dropdown,
  .dropdown a:hover {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) scale(0.95) !important;
    background: inherit !important;
  }
  
  /* Disable footer hover effects */
  .footer-heading:hover,
  .footer-toggle:hover,
  .footer-heading-link:hover,
  .footer-list li a:hover,
  .social-link:hover {
    background: inherit !important;
    color: inherit !important;
    transform: none !important;
  }
  
  /* Disable content section hover effects */
  .content-section a:hover,
  .content-section a:active,
  .content-section a:focus {
    color: inherit !important;
    border-bottom-color: inherit !important;
  }
  
  /* Disable icon hover transforms */
  .body-button:hover .arrow-icon,
  .body-button:hover .apple-icon {
    transform: none !important;
  }
  
  /* Ensure all links work as direct actions */
  a:hover {
    color: inherit !important;
    text-decoration: inherit !important;
    background: inherit !important;
    border: inherit !important;
    transform: none !important;
  }
  
  /* Disable any remaining hover animations */
  .star:hover,
  .space-cloud:hover {
    animation: none !important;
    transform: none !important;
  }
}


/* ===== BASE STYLES ===== */

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.02em;
}

h2 {
  font-size:2rem;
  line-height:2.5rem;
  margin-bottom: var(--space-sm);
  font-size: 2rem;
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
}

h3 {
  font-size: 1.4rem;
  line-height: 1.25;
  margin-bottom: var(--space-sm);
}


/* ===== LAYOUT STYLES ===== */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 5%;
  width: 100%;
}

.content-container, .use-cases-content, .contact-support-content, .cta-content {
  max-width:800px;
  margin:0 auto;
  width:100%;
}

.context-section .section-content {
  font-size:0.98rem;
  color:var(--text-secondary);
  line-height:2;
  margin:0 auto 32px auto;
  max-width:800px;
  text-align:center;
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 2;
  margin: 0 auto 32px auto;
  max-width: 750px;
  text-align: center;
}

.context-section .section-content p {
  margin-bottom:22px;
  margin-bottom: 22px;
}

.context-section .section-content p:last-child {
  margin-bottom:0;
  margin-bottom: 0;
}

.hero-container {
  position:relative;
  z-index:10;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:1rem;
  padding:0 20px;
  max-width:800px;
}

.hero-container::before {
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  width:120%;
  height:120%;
  background:radial-gradient(ellipse at center,
  rgba(0,
  0,
  0,
  0.6) 0%,
  transparent 80%);
  transform:translate(-50%,
  -50%);
  z-index:-1;
  pointer-events:none;
}

.context-section {
  padding:40px 0;
  position:relative;
  background:var(--bg);
  border-top:0px solid rgba(255,
  255,
  255,
  0.07);
  border-bottom:0px solid rgba(255,
  255,
  255,
  0.07);
  padding: 56px 0 56px 0;
}

.context-section.alt {
  background:var(--bg);
  background: var(--bg);
}

.context-section .container {
  max-width:800px;
  margin:0 auto;
  padding:40px;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
}



.footer-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5%;
  min-width: 280px;
}

.footer-section {
  display:flex;
  flex-direction:column;
}

.hero-section, .page-header {
  /* Desktop: Medium spacing - 144px top padding */
  padding: calc(var(--space-md) + 80px) 2rem var(--space-md) 2rem !important;
  padding-top: calc(var(--space-md) + 80px + env(safe-area-inset-top));
  /* Mobile: Medium spacing - 124px top padding */
  padding: calc(var(--space-md) + 60px) 1.5rem var(--space-sm) 1.5rem !important;
  padding-top: calc(var(--space-md) + 60px + env(safe-area-inset-top));
}

.section-title {
  margin-bottom: var(--space-sm);
  margin-top: var(--space-lg);
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.95);
}

.section-description {
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.section-intro {
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.hero-cta, .cta-container {
  flex-direction:column;
  align-items:center;
  width:100%;
}

.features-grid, .asteroid-container {
  flex:none;
  width:351px;
  height:351px;
  order:-1;
  margin-left:0;
}

.nav-container {
  max-width:1600px;
  margin:0 auto;
  padding:1rem 5%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:relative;
  overflow:visible;
}

.section-anchor {
  font-size:0.75rem;
  font-weight:500;
  color:var(--text-secondary);
  text-transform:uppercase;
  letter-spacing:0.1em;
  margin-bottom: var(--space-sm);
  text-align:center;
  display:block;
}

/* Responsive anchor text sizing */
@media (max-width: 768px) {
  .section-anchor {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .section-anchor {
    font-size: 0.6rem;
  }
  
  /* Even smaller text for very small screens */
  .faq-question span,
  .faq-answer p {
    font-size: 0.85rem;
  }
  
  /* Even smaller h1 for very small mobile screens */
  h1 {
    font-size: 1.75rem;
  }
  
  .page-header h1, .page-header-narrow h1 {
    font-size: 1.75rem;
  }
  
  /* Even smaller category tags */
  .category-tag {
    padding: 3px 6px;
    font-size: 0.75rem;
  }
}

.section-bg-black {
  background:var(--bg);
}

.error-section {
  min-height:60vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:4rem 2rem;
  text-align:center;
}

.links-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,
  minmax(250px,
  1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  grid-template-columns:1fr;
}

.page-header>.container {
  position:relative;
  z-index:1;
}

body.vision-page .section-content {
  text-align:left;
  max-width:800px;
  margin:0 auto;
  width:100%;
  padding:0 10px;
  padding:0 15px;
}

body.vision-page .section-title {
  text-align:left;
  max-width:800px;
  margin:0 auto 2rem auto;
  width:100%;
  padding:0 10px;
  padding:0 15px;
}

body.vision-page #founders .container {
  position:relative;
  z-index:1;
}

body.vision-page #founders .section-title {
  margin-bottom:3rem;
  color:#fff;
  margin-bottom:2rem;
  font-size:2rem;
  font-size:1.8rem;
  text-align:left;
}

body.vision-page .container {
  max-width:800px;
  margin:0 auto;
  padding:0 20px;
  width:100%;
}

/* Research page specific styling - background removed to match other pages */

body.research-page .container {
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  width:100%;
}

/* Ensure footer aligns with content on research page */
body.research-page .footer-container {
  padding:0 20px;
}

/* Research page uses global section-title styling */

body.research-page .section-content {
  max-width:800px;
  margin:0 auto;
  width:100%;
  text-align:left;
  padding:0 10px;
  padding:0 15px;
}

/* Research page images and grids use full 1200px width */
body.research-page .principle-grid,
body.research-page .research-image,
body.research-page .references-grid,
body.research-page img {
  max-width:1200px;
  margin-left: auto;
  margin-right: auto;
}

body.vision-page .vision-tags-container {
  max-width:600px;
  margin:0 auto;
  display:flex;
  gap:12px;
  justify-content:center;
  gap:8px;
  gap:6px;
}

body.vision-page .section-anchor {
  font-size:0.75rem;
  color:rgba(255,
  255,
  255,
  0.5);
  text-transform:uppercase;
  letter-spacing:0.1em;
  margin-bottom:0.75rem;
  text-align:left;
  display:block;
  max-width:800px;
  margin:0 auto;
  padding:0 10px;
  padding:0 15px;
}

body.vision-page .section-divider {
  max-width:800px;
  margin:3rem auto 0 auto;
  height:1px;
  background:rgba(255,
  255,
  255,
  0.1);
  margin:2rem auto 0 auto;
  margin:1.5rem auto 0 auto;
}

body.vision-page #founders .section-content {
  background:transparent;
  border:none;
  border-radius:0;
  padding:0;
  margin:0 auto;
  max-width:800px;
  padding:0 15px;
}

body.features-page .container {
  max-width:1200px;
  margin:0 auto;
}

/* Keep text content at 800px width on features page */
body.features-page .section-title,
body.features-page .section-description,
body.features-page .section-content,
body.features-page .page-header p,
body.features-page .cta-content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

body.research-page #attentionaldesign .section-anchor, body.research-page #attentionaldesign-content .section-anchor {
  text-align:center;
  margin-bottom:1rem;
}

body.research-page #attentionaldesign .section-title, body.research-page #attentionaldesign-content .section-title {
  text-align:center !important;
  max-width: 800px;
  margin: 0 auto;
}

/* Attentional design section uses global section-title styling */

body.research-page #attentionaldesign .section-description {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

body.vision-page #founders .section-anchor {
  text-align:left;
}

body.vision-page .section-image-placeholder {
  width:100%;
  max-width:800px;
  height:200px;
  margin:2rem auto;
  background:linear-gradient(135deg,
  color-mix(in srgb,
  var(--fire-orange) 18%,
  transparent) 0%,
  color-mix(in srgb,
  var(--fire) 24%,
  transparent) 100% );
  border:none;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background 0.3s ease;
  height:150px;
  margin:1.5rem auto;
  height:120px;
  margin:1.25rem auto;
}

body.vision-page #manifesto .section-image-placeholder {
  background:radial-gradient(120% 90% at 18% 28%,
  color-mix(in srgb,
  var(--fire-orange) 34%,
  transparent) 0%,
  transparent 62%),
  radial-gradient(110% 80% at 78% 32%,
  color-mix(in srgb,
  var(--fire) 26%,
  transparent) 0%,
  transparent 64%),
  radial-gradient(90% 90% at 50% 82%,
  color-mix(in srgb,
  var(--fire-bright) 18%,
  transparent) 0%,
  transparent 70%);
}

body.vision-page #mission .section-image-placeholder {
  background:radial-gradient(120% 90% at 12% 64%,
  color-mix(in srgb,
  var(--fire) 28%,
  transparent) 0%,
  transparent 60%),
  radial-gradient(110% 80% at 86% 38%,
  color-mix(in srgb,
  var(--fire-orange) 32%,
  transparent) 0%,
  transparent 65%),
  radial-gradient(100% 100% at 58% 18%,
  color-mix(in srgb,
  var(--fire-bright) 16%,
  transparent) 0%,
  transparent 72%);
}

body.vision-page #founders .section-image-placeholder {
  background:radial-gradient(120% 90% at 22% 26%,
  color-mix(in srgb,
  var(--fire-orange) 30%,
  transparent) 0%,
  transparent 60%),
  radial-gradient(110% 80% at 78% 72%,
  color-mix(in srgb,
  var(--fire) 26%,
  transparent) 0%,
  transparent 66%),
  radial-gradient(100% 100% at 36% 86%,
  color-mix(in srgb,
  var(--fire-bright) 18%,
  transparent) 0%,
  transparent 70%);
}

.faq-tags-container {
  max-width:800px;
  width:100%;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  padding:0 20px;
  justify-content:center;
}

.features-section {
  padding: var(--section-padding) 0;
  scroll-margin-top:40px;
  margin:0;
  width:100%;
  position:relative;
}

.features-section h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}


.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Tablet: 2x2 grid */
@media (max-width: 1024px) and (min-width: 769px) {
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Mobile: stacked */
@media (max-width: 768px) {
  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.cta-section {
  background:transparent;
  border-top:none;
  border-bottom:none;
  text-align:center;
  padding: 4rem 0;
}

.research-section h2 {
  line-height:1.2;
}

.section-anchor+.section-title, .container>.section-title:first-child {
  margin-top:2rem !important;
}

body.features-page .section-title {
  margin-bottom: var(--space-sm) !important;
}

body.features-page .container .section-title {
  margin-bottom: var(--space-sm) !important;
}

body.features-page #core-features .section-title, body.features-page #use-cases .section-title, body.features-page #made-for-you .section-title, body.features-page .faq-section .section-title {
  margin-bottom: var(--space-sm) !important;
}

body.features-page .faq-container, body.features-page .core-features-grid, body.features-page .use-cases-grid, body.features-page .who-helps-cards {
  margin-top:0 !important;
}

body.support-page .faq-section {
  max-width: 1200px;
}

body.support-page .faq-section .container {
  max-width: 1200px;
}

body.support-page .faq-container {
  margin-top:0 !important;
  max-width:1200px;
}

body.support-page .faq-tags-container {
  max-width:800px;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

body.features-page .faq-section {
  max-width: 1200px;
}

body.features-page .faq-section .container {
  max-width: 1200px;
}

body.features-page .faq-container {
  margin-top:0 !important;
  max-width:1200px;
}

/* Features page anchor font size */
body.features-page .content-section a, 
body.features-page .content-section a:link, 
body.features-page .content-section a:visited {
  font-size: 0.9rem;
}

body.features-page .content-section a:hover, 
body.features-page .content-section a:active, 
body.features-page .content-section a:focus {
  font-size: 0.9rem;
}

body.support-page .section-title {
  margin-bottom: var(--space-sm) !important;
}


.section-content {
  max-width:800px;
  margin:0 auto;
}

.section-content p {
  font-size:1rem;
  line-height:1.7;
  color:var(--text-secondary);
  margin-bottom:2rem;
}

.navigation-cards-section {
  padding:0;
  background:transparent;
  margin-top:4rem;
  margin-bottom:4rem;
}

.navigation-cards-section .container {
  max-width: 1200px;
}

body.vision-page .navigation-cards-section {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

body.vision-page .navigation-cards-section .container {
  max-width: 1200px;
}

body.vision-page .navigation-cards-section.features-section {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.navigation-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-sm);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2%;
}

.faq-section {
  background:rgba(255,
  255,
  255,
  0.02);
  margin:4rem auto;
  background:#000000;
  max-width:1000px;
  width:100%;
  display:block;
}

/* Features page: more space above FAQ section */
body.features-page .faq-section {
  margin-top: 6rem !important;
}

/* Mobile adjustments for FAQ sections */
@media (max-width: 768px) {
  .faq-section {
    margin: 2rem 0;
    padding: 0 0.5rem;
  }
  
  .faq-container {
    margin: 0 auto;
    max-width: 98vw;
    width: 98vw;
  }
  
  /* Reduce padding for category tags on mobile */
  .category-tag {
    padding: 4px 8px;
    font-size: 0.8rem;
  }
  
  /* Make FAQ text smaller on mobile */
  .faq-question span,
  .faq-answer p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .faq-question {
    padding: 1.5rem 1rem 1.5rem 1.5rem;
  }
  
  .faq-question[aria-expanded="true"] + .faq-answer {
    padding: 0.5rem 1rem 1.5rem 1.5rem;
  }
  
  .faq-answer p {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  
  /* Mobile footer spacing */
  .footer {
    margin-top: var(--space-md); /* Increased top margin for mobile */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  /* Research page footer uses global footer behavior */
}

.faq-container {
  box-shadow:0 4px 20px rgba(0,
  0,
  0,
  0.3);
  max-width:1200px;
  margin:0 auto;
  width:100%;
  border:1px solid rgba(255,
  255,
  255,
  0.1);
  border-radius:16px;
  background:rgba(255,
  255,
  255,
  0.02);
  overflow:hidden;
  display:block;
}

.contact-support-section {
  background:rgba(255,
  255,
  255,
  0.01);
  background:#000000;
}

.content-section {
  margin-bottom: var(--space-md);
}

.content-section h2 {
  margin-bottom: var(--space-sm);
}

.content-section h3 {
  font-size:1.5rem !important;
  font-weight:600 !important;
  margin-bottom: var(--space-sm) !important;
  color:rgba(255, 255, 255, 0.95) !important;
}

.content-section p {
  font-size:1.1rem;
  line-height:1.7;
  color:var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.content-section ul {
  margin: var(--space-xs) 0 var(--space-xs) var(--space-md);
}

.content-section li {
  font-size:1.1rem;
  line-height:1.7;
  color:rgba(255,
  255,
  255,
  0.8);
  margin-bottom: var(--space-xs);
}

.content-section a, .content-section a:link, .content-section a:visited {
  color:#FFF !important;
  text-decoration:none !important;
  font-weight:600;
  transition:all 0.3s ease;
}

.content-section a:hover, .content-section a:active, .content-section a:focus {
  color:rgba(255,
  255,
  255,
  0.8) !important;
  text-decoration:none !important;
}

.content-section .content-section a[href*="data-request"] {
  color:#FFF !important;
  text-decoration:none !important;
  font-weight:600;
  border-bottom:1px solid rgba(255,
  255,
  255,
  0.3);
  padding-bottom:1px;
}

.content-section .content-section a[href*="data-request"]:hover {
  border-bottom-color:rgba(255,
  255,
  255,
  0.8);
}

body.sitemap-page .section-title {
  text-align:left;
}

.data-rights-content, .data-provide-content, .next-steps-content, .data-rights-content h3, .data-provide-content h3, .next-steps-content h3, .data-rights-content p, .data-provide-content p, .next-steps-content p, .data-rights-content ul, .data-provide-content ul, .next-steps-content ul, .data-rights-content li, .data-provide-content li, .next-steps-content li, .section-description {
  font-size:1.1rem;
  line-height:inherit;
  color:rgba(255,
  255,
  255,
  0.7);
  text-align:center;
  margin-bottom:2.5rem;
  max-width:800px;
  margin-left:auto;
  margin-right:auto;
  width:100%;
}

.faq-section .section-description {
  margin-bottom: var(--space-sm) !important;
}

body.features-page .features-section {
  margin:0;
  scroll-margin-top:40px;
  width:100%;
  position:relative;
  background:transparent;
}

.features-grid .feature {
  padding:20px 0;
  display:flex;
  align-items:flex-start;
  gap:20px;
  padding:15px 0;
  gap:15px;
  padding:12px 0;
  gap:12px;
}

.core-features-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  margin-top:0;
  border-radius:28px;
  padding:2rem;
  background:rgba(255,
  255,
  255,
  0.02);
}

body.features-page .core-features-grid {
  grid-template-columns:1fr;
  padding:1rem;
  max-width: 600px;
  margin: 0 auto;
  justify-items: center;
}

.use-cases-grid .use-case {
  padding:12px 0;
  gap:12px;
}

body.research-page .features-section {
  margin:0;
  scroll-margin-top:40px;
  width:100%;
  position:relative;
}


body.research-page .context-section .section-content {
  margin-bottom:16px;
}

/* Reduced spacing for FAQ sections - bring tags closer to description and FAQ closer to title */ .faq-category-tags {
  margin-top: 0 !important;
  margin-bottom: var(--space-sm) !important;
}

.vision-tags-container {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Focus Section Styles */ .focus-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40vh;
  padding: var(--space-md) 0;
  gap: var(--space-lg);
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

/* ===== CONTENT SECTION STYLES ===== */ /* Context Sections */ .context-section {
  padding: 80px 0 80px 0;
  position: relative;
  background: var(--bg);
  border-top: 0px solid rgba(255,255,255,0.07);
  border-bottom: 0px solid rgba(255,255,255,0.07);
}

.context-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 36px;
  text-align: center;
  letter-spacing: -0.01em;
}


/* Benefits Grid */ .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
}

/* Legacy Features Grid */ .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  margin-top: 48px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  gap: 1rem;
}

/* Get Section */ .get-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vw;
  max-width: 900px;
  max-height: 900px;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

.get .section-title {
  margin-bottom: 24px;
}

.features-grid, .audience-list {
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Benefits Grid Mobile */ .benefits-grid {
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}


body.research-page #attentionaldesign-content .attentional-design-header {
  grid-template-columns: 1fr;
}



/* Benefits Grid Ultra-Compact */ .benefits-grid {
  gap: 20px;
  margin-top: 32px;
}

/* ===== COMPONENTS STYLES ===== */

.cta-container {
  display:flex;
  gap:2rem;
  justify-content:center;
  position:relative;
  z-index:15;
  margin-top:1.5rem;
}


/* ===== COMPONENTS STYLES ===== */

/* ===== COMPONENTS STYLES ===== */ /* ===== COMPONENTS STYLES ===== */ /* ===== COMPONENTS STYLES ===== */ /* ===== COMPONENTS STYLES ===== */ .card-description {
  font-size:0.9rem;
  line-height:inherit;
  color:var(--text-secondary);
}

.cta-button {
  font-weight:600;
  font-size:1rem;
  display:inline-flex;
  align-items:center;
  gap:0.5rem;
  padding:1.125rem 1.75rem;
  background:rgba(255, 255, 255, 0.03);
  color:#fff;
  text-decoration:none;
  border:1px solid rgba(255, 255, 255, 0.3);
  border-radius:16px;
  transition:all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-width:160px;
  justify-content:center;
  position:relative;
  overflow:hidden;
  width:auto;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  box-shadow:0 4px 20px rgba(255, 255, 255, 0.1);
}

.focus-button {
  font-weight:500;
  font-size:1rem;
  display:inline-flex;
  align-items:center;
  gap:0.5rem;
  padding:1rem 1.5rem;
  background:linear-gradient(135deg,
  rgba(255,
  200,
  150,
  0.15) 0%,
  rgba(255,
  180,
  120,
  0.1) 100%);
  border:1px solid rgba(255,
  200,
  150,
  0.4);
  border-radius:16px;
  color:#fff;
  text-decoration:none;
  transition:all 0.3s ease;
  backdrop-filter:blur(10px);
  box-shadow:0 4px 20px rgba(255,
  200,
  150,
  0.1);
  padding:0.875rem 1.25rem;
  font-size:0.95rem;
  display:inline-block;
  transition:background-color 0.3s ease,
  border-color 0.3s ease,
  color 0.3s ease,
  transform 0.3s ease,
  box-shadow 0.3s ease;
}

.hero {
  position: relative;
  width: 100%;
  min-height: min(100vh, 900px);
  min-height: min(100svh, 900px);
  max-height: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center,
  rgba(10,
  10,
  10,
  0.8) 0%,
  rgba(0,
  0,
  0,
  0.95) 60%,
  rgba(0,
  0,
  0,
  1) 100%),
  radial-gradient(ellipse at center,
  #0a0a0a 0%,
  #000 100%);
}

.hero-content {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:1rem;
}

/* CTA button hover effects are now handled in the animation system above */

.cta-button::before {
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition:left 0.6s ease;
  border-radius:16px;
}

.cta-button:hover::before {
  left:100%;
}

.cta-button::after {
  content:'';
  position:absolute;
  inset:-2px;
  background:rgba(255, 255, 255, 0.1);
  border-radius:17px;
  opacity:0;
  transition:opacity 0.35s ease;
  z-index:-1;
  filter:blur(8px);
}

.cta-button:hover::after {
  opacity:1;
}

body.home .cta-button {
  justify-content:center;
  font-weight:600;
}

.focus-button:hover {
  background:linear-gradient(135deg,
  rgba(255,
  200,
  150,
  0.25) 0%,
  rgba(255,
  180,
  120,
  0.2) 100%);
  border-color:rgba(255,
  200,
  150,
  0.6);
  transform:translateY(-2px);
  box-shadow:0 8px 30px rgba(255,
  200,
  150,
  0.3),
  0 0 40px rgba(255,
  200,
  150,
  0.15);
}

.body-button {
  display:inline-flex;
  align-items:center;
  gap:0.75rem;
  padding:1.125rem 1.75rem;
  background:rgba(255,
  255,
  255,
  0.08);
  border:1px solid rgba(255,
  255,
  255,
  0.15);
  border-radius:12px;
  color:#fff;
  text-decoration:none;
  font-weight:500;
  font-size:1.05rem;
  transition:all 0.3s ease;
  backdrop-filter:blur(10px);
  position:relative;
  overflow:hidden;
}

.body-button .arrow-icon, .body-button .apple-icon {
  width:18px;
  height:18px;
  transition:transform 0.3s ease;
}

.body-button::before {
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg,
  transparent,
  rgba(255,
  255,
  255,
  0.1),
  transparent);
  transition:left 0.5s ease;
}

.body-button:hover::before {
  left:100%;
}

/* Body button hover effects are now handled in the animation system above */

.body-button-transparent {
  background:transparent;
  border:1px solid rgba(255,
  255,
  255,
  0.2);
  color:#fff;
  border-radius:20px;
}

.body-button-transparent:hover {
  background:rgba(255,
  255,
  255,
  0.05);
  border-color:rgba(255,
  255,
  255,
  0.3);
}

.whitepaper-ctas .body-button {
  width: auto;
  justify-content: center;
  text-align: center;
  min-width: 200px;
}


.footer {
  background: hsla(0,0%,4%,0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color:var(--text-secondary);
  padding: calc(32px + env(safe-area-inset-top)) 0 calc(24px + env(safe-area-inset-bottom)) 0;
  margin-top: var(--space-lg); /* Increased top margin for better spacing */
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1600px;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 104px;
  margin-bottom: 40px;
  min-width: 0;
}

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

.footer-brand .footer-description {
  margin-bottom:1rem;
}

.footer-logo {
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  padding:0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-logo:hover {
  opacity: 0.7;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-icon {
  width:var(--icon-md);
  height:var(--icon-md);
  border-radius: 0 !important;
}

.footer-logo-text {
  font-size:1rem;
  font-weight:500;
  color:#fff;
  margin-top:0;
  padding-top:0;
  text-align:left;
}

.footer-description {
  font-size:0.85rem;
  line-height:1.6;
  color:rgba(255,
  255,
  255,
  0.7);
  max-width:560px;
  font-size:0.9rem;
  padding:0;
  text-align:left;
}

.footer-social {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  padding: 0 0 20px 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  min-width: 0;
  overflow: hidden;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem !important;
}

.footer-list li a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 0;
  transition: color 0.2s ease-in-out;
  text-align:left;
}

.footer-column {
  display:flex;
  flex-direction:column;
  gap: var(--space-xs);
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-heading {
  font-size:0.85rem;
  line-height:1.4;
  font-weight:600;
  color:rgba(255,
  255,
  255,
  0.8);
  margin-bottom:8px;
  text-align:left;
}

.footer-heading-link {
  color: inherit;
  text-decoration: none;
  flex: 1;
  display: flex;
  align-items: center;
}

.footer-heading-link:hover,
.footer-heading-link:focus {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
}

/* Footer toggle styles removed - using simple layout */

/* Footer arrow styles removed - no longer needed */

/* Footer arrow styles removed */

/* Footer content collapsible styles removed */

/* Expanded footer content styles removed */

/* Expanded footer arrow styles removed */

.footer-list li a:hover {
  color: rgba(255, 255, 255, 1);
}

.footer-bottom {
  padding-top:16px;
  border-top:1px solid rgba(255,
  255,
  255,
  0.1);
  text-align:left;
  padding:0;
  border-top:none;
}

.footer-copyright {
  color:rgba(255,
  255,
  255,
  0.5);
  font-size:0.8rem;
  margin:0;
  font-size:0.7rem;
  color:rgba(255,
  255,
  255,
  0.5);
  font-size:0.65rem;
  text-align:left;
}

.footer .footer-copyright, .footer-bottom .footer-copyright, body.features-page .footer-copyright {
  color:rgba(255,
  255,
  255,
  0.5);
  font-size:0.8rem;
  line-height:1.3;
  font-size:0.7rem;
  color:rgba(255,
    255,
    255,
    0.5);
  font-size:0.65rem;
}

a, button, .cta-button {
  transition:all 0.3s cubic-bezier(0.4,
  0,
  0.2,
  1);
}

.page-header-narrow {
  padding: calc(70px + 70px) 2rem 70px 2rem !important;
  padding-top: calc(70px + 70px + env(safe-area-inset-top));
  padding: calc(60px + 50px) 1.5rem 60px 1.5rem !important;
  padding-top: calc(60px + 50px + env(safe-area-inset-top));
  padding: calc(100px + 70px) 0 100px 0;
  text-align:center;
  background:linear-gradient(180deg,
  rgba(255,
  255,
  255,
  0.02) 0%,
  transparent 100%);
  margin-top:0;
  position:relative;
  overflow:hidden;
}

.page-header-narrow h1 {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.page-header-narrow p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.feature h3, .link-card h3 {
  font-size:1.25rem;
  letter-spacing:0.03em;
  max-width:380px;
  font-size:1.1rem;
  letter-spacing:0.02em;
  max-width:180px;
}

.footer-social .social-link {
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  background: rgba(255, 255, 255, 0.05);
}

.footer-social .social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px) scale(1.15);
  box-shadow: 0 6px 20px rgba(234, 146, 89, 0.25);
}

.footer-social .social-link svg {
  width:var(--icon-md) !important;
  height:var(--icon-md) !important;
}

/* Make LinkedIn icon smaller to match visual weight of other icons */
.footer-social .social-link[href*="linkedin"] svg {
  width:16px !important;
  height:16px !important;
}

/* Make Substack icon smaller by 2px */
.footer-social .social-link[href*="substack"] svg {
  width:22px !important;
  height:22px !important;
}

/* Enable footer heading hover effects on desktop */
@media (min-width: 1025px) {
  .footer-heading:hover,
  .footer-heading-link:hover {
    color: rgba(255, 255, 255, 1) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    background-color: transparent !important;
    transform: none !important;
    opacity: inherit !important;
  }
  
  /* Ensure desktop footer headings remain clearly interactive */
  .footer-heading {
    cursor: pointer !important;
  }
}

/* Collapsible footer styles removed - footer is always expanded */

.main-nav.scrolled {
  background: hsla(0,0%,4%,0.95) !important;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  overflow: visible;
}

.nav-item {
  position: relative;
}

.nav-logo {
  display:flex;
  align-items:center;
  gap:0.75rem;
  text-decoration:none;
  color:inherit;
  transition:all 0.3s ease;
  z-index:1001;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  z-index: 1001;
}

.nav-logo:hover {
  opacity: 0.7;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  padding: 1rem;
  position: relative;
}

/* Nav link hover effects are now handled in the animation system above */

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  max-width: 240px;
  width: 240px;
  height: auto;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  display: block;
  padding: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  text-align: left !important;
}

.dropdown a {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 0;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
  text-align: left !important;
}

.dropdown a:first-child {
  border-radius: 16px 16px 0 0;
}

.dropdown a:last-child {
  border-radius: 0 0 16px 16px;
}

.dropdown a:only-child {
  border-radius: 16px;
}

.dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.dropdown a:first-child:hover {
  border-radius: 16px 16px 0 0;
}

.dropdown a:last-child:hover {
  border-radius: 0 0 16px 16px;
}

.dropdown a:only-child:hover {
  border-radius: 16px;
}

.dropdown::before {
  display: none;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  display: block;
}

.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  display: block;
}

.nav-item:not(:hover):not(:focus-within) .dropdown {
  opacity: 0;
  visibility: hidden;
}

.footer-bg {
  background:var(--bg);
  /* Optimize footer scrolling performance */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  contain: layout style paint;
}

.nav-link:focus-visible, .dropdown a:focus-visible, .nav-cta-button:focus-visible, .mobile-menu-toggle:focus-visible, .cta-button:focus-visible, .focus-button:focus-visible, .footer-list li a:focus-visible {
  outline:2px solid var(--color-primary);
  outline-offset:3px;
}

.nav-link:focus, .dropdown a:focus, .nav-cta-button:focus, .mobile-menu-toggle:focus, .cta-button:focus, .focus-button:focus, .footer-list li a:focus {
  outline:none;
}

.dropdown-column {
  width: 100%;
  padding: 0;
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0;
}

.nav-cta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav-cta-button {
  display:flex;
  align-items:center;
  gap:0.125rem; /* Reduced from 0.25rem */
  padding:0.625rem 1rem;
  background:transparent;
  border:1px solid rgba(255,
  255,
  255,
  0.15);
  border-radius:12px;
  color:#fff;
  text-decoration:none;
  font-size:0.8rem;
  font-weight:600;
  transition:background-color 0.3s ease,
  border-color 0.3s ease,
  color 0.3s ease,
  transform 0.3s ease,
  box-shadow 0.3s ease;
  position:relative;
  overflow:hidden;
  white-space:nowrap;
}

.nav-cta-button::before {
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg,
  transparent,
  rgba(255,
  255,
  255,
  0.1),
  transparent);
  transition:left 0.5s ease;
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

.nav-cta-button:hover::before {
  left:100%;
  left: 100%;
}

.nav-cta-button:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(234, 146, 89, 0.3);
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 100vh;
  max-height: 100svh; /* Small viewport height for mobile */
  background: rgba(15, 15, 15, 0.99);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  color: #fff;
  z-index: 12000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: calc(1rem + env(safe-area-inset-top)) 1.5rem calc(2rem + env(safe-area-inset-bottom)) 1.5rem;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  transform: translateY(-20px);
}

/* Mobile nav content wrapper to prevent scrolling past bottom */
.mobile-nav-content {
  width: 100%;
  max-height: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: 2rem;
}

.mobile-nav::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:transparent;
  backdrop-filter:blur(30px);
  -webkit-backdrop-filter:blur(30px);
  z-index:-1;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Ensure mobile nav is properly hidden when not open */
.mobile-nav:not(.open) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-20px);
}

.mobile-nav-header {
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:2rem;
  padding-bottom:1rem;
  border-bottom:1px solid rgba(255,
  255,
  255,
  0.1);
  opacity:0;
  transition:opacity 0.3s cubic-bezier(0.25,
  0.46,
  0.45,
  0.94) 0.05s;
  margin-bottom:1.5rem;
  padding-bottom:0.75rem;
  margin-bottom:1rem;
  padding-bottom:0.5rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.mobile-nav.open .mobile-nav-header {
  opacity:1;
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-header-actions {
  display:flex;
  align-items:center;
  gap:0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-nav-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-nav-cta-button:hover {
  background: inherit !important;
  border-color: inherit !important;
  transform: none !important;
  box-shadow: inherit !important;
  backdrop-filter: inherit !important;
  -webkit-backdrop-filter: inherit !important;
}

.mobile-nav-cta-button:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.mobile-nav-logo {
  display:flex;
  align-items:center;
  gap:0.75rem;
  text-decoration:none;
  color:inherit;
  transition:all 0.3s ease;
}

.mobile-nav-logo:hover {
  opacity: inherit !important;
}

.mobile-nav-close {
  background:none;
  border:none;
  color:rgba(255,
  255,
  255,
  0.802);
  cursor:pointer;
  transition:all 0.3s ease;
  padding:0.5rem;
  border-radius:8px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.mobile-nav-close:hover {
  background: inherit !important;
}

.mobile-nav-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 0 1 auto;
  overflow-y: visible;
  padding-right: 0.5rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.15s,
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

.mobile-nav.open .mobile-nav-links {
  opacity:1;
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-item {
  border-bottom:none;
  margin-bottom:1rem;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-item:last-child {
  margin-bottom:0;
  margin-bottom: 0;
}

.mobile-nav-link {
  display:block;
  color:rgba(255,
  255,
  255,
  0.805);
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  padding:1rem 0 0.5rem 0;
  transition:all 0.3s ease;
  padding:0.875rem 0;
  padding:0.75rem 0;
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 0.5rem 0 0.25rem 0;
  transition: all 0.3s ease;
  text-align: left;
}

/* Mobile nav link hover effects are now handled in the animation system above */

.mobile-nav-submenu {
  list-style:none;
  margin:0;
  padding:0 0 0 0.8rem;
  padding-left:0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-submenu li {
  border-bottom:none;
  margin-bottom: 0.2rem;
}

.mobile-nav-submenu a {
  display:block;
  color:rgba(255,
  255,
  255,
  0.7);
  text-decoration:none;
  font-size:15px;
  font-weight:500;
  padding:0.75rem 0;
  transition:all 0.3s ease;
  padding:0.625rem 0;
  padding:0.5rem 0;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 0.3rem 0;
  display: block;
  transition: all 0.3s ease;
  text-align: left;
  line-height: 1.2;
}

.mobile-nav-submenu a:hover {
  color: inherit !important;
}

.mobile-nav-cta {
  display:flex;
  flex-direction:column;
  gap:0.75rem;
  width:fit-content;
  margin-top:1.5rem;
  padding-top:1rem;
  margin-bottom:2rem;
  opacity:0;
  transition:opacity 0.3s cubic-bezier(0.25,
  0.46,
  0.45,
  0.94) 0.1s;
  margin-top:1rem;
  padding-top:0.75rem;
  margin-top:0.5rem;
  padding-top:0.25rem;
  gap:0.4rem;
}

.mobile-nav.open .mobile-nav-cta {
  opacity:1;
}

.mobile-cta-button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:0.75rem;
  padding:1rem 1.25rem;
  background:rgba(255,
  255,
  255,
  0.08);
  border:1px solid rgba(255,
  255,
  255,
  0.15);
  border-radius:14px;
  color:#fff;
  text-decoration:none;
  font-size:0.9rem;
  font-weight:500;
  transition:all 0.3s ease;
  position:relative;
  overflow:hidden;
  width:fit-content;
  padding:0.875rem 1rem;
  font-size:0.85rem;
  padding:0.75rem 0.875rem;
  font-size:0.8rem;
}

.mobile-cta-button::before {
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg,
  transparent,
  rgba(255,
  255,
  255,
  0.1),
  transparent);
  transition:left 0.5s ease;
}

.mobile-cta-button:hover::before {
  left:100%;
}

.mobile-cta-button:hover {
  background:rgba(255,
  255,
  255,
  0.15);
  border-color:rgba(255,
  255,
  255,
  0.3);
  transform:scale(1.02);
  box-shadow:0 4px 15px rgba(255,
  255,
  255,
  0.1);
}

.link-card {
  background:rgba(255,
  255,
  255,
  0.02);
  border:1px solid rgba(255,
  255,
  255,
  0.08);
  border-radius:14px;
  padding:2rem;
  text-align:center;
  transition:all 0.3s ease;
}

.link-card:hover {
  background:rgba(255,
  255,
  255,
  0.04);
  border-color:rgba(255,
  255,
  255,
  0.12);
  transform:translateY(-2px);
}

.link-card h3 {
  font-size:1.2rem;
  font-weight:600;
  line-height:1.3;
  margin-bottom:0.5rem;
  color:rgba(255, 255, 255, 0.95);
}

.link-card p {
  color:rgba(255,
  255,
  255,
  0.65);
  font-size:0.9rem;
  line-height:1.5;
  margin-bottom:2rem;
}

.link-card a {
  color:rgba(255,
  255,
  255,
  0.8);
  text-decoration:none;
  font-weight:500;
  transition:color 0.3s ease;
}

.link-card a:hover {
  color:#fff;
}

.page-header {
  /* Top padding now handled by .hero-section, .page-header rule above */
  padding: 0 0 100px 0;
  text-align: center;
  background: linear-gradient(180deg,
    rgba(255,
    255,
    255,
    0.02) 0%,
    transparent 100%);
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
}

body.features-page .page-header::before {
  background: transparent;
}

/* Research page header background removed to match other pages */

body.research-page .page-header::before {
  background: transparent;
}

body.vision-page .page-header::before {
  background: transparent;
}

body.vision-page .page-header::after {
  display: none;
}

body.vision-page .card-description {
  text-align:left;
  color:rgba(255,
  255,
  255,
  0.75) !important;
  font-size:1.025rem !important;
  line-height:1.6 !important;
  font-weight:400 !important;
}

.skip-nav {
  position:absolute;
  top:-40px;
  left:6px;
  background:#000;
  color:#fff;
  padding:8px;
  text-decoration:none;
  border-radius:4px;
  z-index:10000;
  font-size:1rem;
  font-weight:600;
  opacity:0;
  visibility:hidden;
  transition:opacity 0.2s ease,
  visibility 0.2s ease;
}

.skip-nav:focus {
  top:6px;
  outline:2px solid #fff;
  outline-offset:2px;
  opacity:1;
  visibility:visible;
}

body.vision-page .main-nav {
  border-bottom:none !important;
}

body.vision-page .main-nav.scrolled {
  border-bottom:none !important;
}

body.vision-page .vision-nav-tags {
  padding:1rem 0 1rem 0;
  margin-bottom:1rem;
  background:rgba(0,
    0,
    0,
    0.95);
  backdrop-filter:blur(10px);
}

body.vision-page .vision-nav-tag {
  background:transparent;
  border:1px solid transparent;
  border-radius:16px;
  color:rgba(255,
  255,
  255,
  0.6);
  font-size:0.875rem;
  font-weight:500;
  letter-spacing:0.05em;
  cursor:pointer;
  transition:all 0.3s ease;
  white-space:nowrap;
  position:relative;
  text-align:center;
  padding:12px 24px;
}

body.vision-page .vision-nav-tag:hover {
  color:rgba(255,
  255,
  255,
  0.8);
  border-color:rgba(255,
  255,
  255,
  0.2);
}

body.vision-page .vision-nav-tag.active {
  color:#fff;
  border-color:rgba(255,
  255,
  255,
  0.3);
  background:rgba(255,
  255,
  255,
  0.05);
}

body.vision-page .vision-nav-tag:focus {
  outline:none;
  border-color:rgba(255,
  255,
  255,
  0.5);
}

body.vision-page .vision-nav-tag:focus-visible {
  outline:2px solid #fff;
  outline-offset:2px;
}

body.vision-page #founders .card-description {
  margin-bottom:2rem;
  text-align:left;
  padding:0;
  position:relative;
  background:transparent;
  border:none;
  font-size:1.1rem;
  line-height:1.7;
  color:rgba(255, 255, 255, 0.85);
  margin-left:0;
  padding-left:0;
  margin-top:0.5rem;
}

body.vision-page #founders .card-description:last-child {
  margin-bottom:0;
}

body.vision-page #founders .card-description strong {
  color:#fff;
  font-weight:600;
  font-size:1.1rem;
  display:inline;
  background:none;
  padding:0;
  border:none;
  margin:0;
  position:static;
  font-size:1rem;
  font-size:0.95rem;
}

body.home p:not(.footer-copyright):not(.footer-description) {
  color:rgba(255,
  255,
  255,
  0.75) !important;
  font-size:1.025rem !important;
  line-height:1.6 !important;
  font-weight:400 !important;
}

body.home .footer-description {
  color:rgba(255,
  255,
  255,
  0.75) !important;
  font-size:0.85rem !important;
  line-height:1.6 !important;
}

body.home .footer-copyright {
  color:rgba(255,
  255,
  255,
  0.5) !important;
  font-size:0.8rem !important;
  line-height:1.3 !important;
}

body.features-page .footer-description {
  color:rgba(255,
  255,
  255,
  0.75) !important;
  font-size:0.85rem !important;
  line-height:1.6 !important;
}

body.research-page .attentional-design-header {
  display:grid;
  grid-template-columns:1fr;
  gap:2rem;
  align-items:center;
  justify-content:center;
  text-align:center;
  margin-bottom:3rem;
}

body.vision-page a:focus, body.vision-page button:focus {
  outline:none;
}

body.vision-page a:focus-visible, body.vision-page button:focus-visible {
  outline:2px solid #fff;
  outline-offset:2px;
}

body.vision-page .page-header {
  padding-bottom:40px !important;
}

body.support-page .page-header::before {
  background: transparent;
}

body.support-page .page-header::after {
  display: none;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.page-header p {
  font-size:1rem;
  color:rgba(255,
  255,
  255,
  0.65);
  margin-bottom:0;
  line-height:1.6;
  max-width:800px;
  margin-left:auto;
  margin-right:auto;
  font-size:1.1rem;
}

body.features-page .main-nav,
body.support-page .main-nav {
  border-bottom:none !important;
}

body.support-page .main-nav.scrolled {
  border-bottom:none !important;
}

body.support-page .page-header, body.features-page .page-header, body.research-page .page-header, body.vision-page .page-header {
  padding-bottom:40px;
}

.page-header h2 {
  color:rgba(255,
  255,
  255,
  0.9);
  margin-bottom: var(--space-lg);
}

.page-nav-link:hover, .page-nav-link.active {
  color:#fff;
}

.page-nav-link.active::after {
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:3px;
  background:#fff;
  border-radius:2px 2px 0 0;
}

.page-nav-link::after {
  content:'';
  position:absolute;
  bottom:0;
  left:50%;
  right:50%;
  height:3px;
  background:#fff;
  border-radius:2px 2px 0 0;
  transition:all 0.3s ease;
  opacity:0;
}

.page-nav-link:hover::after {
  left:0;
  right:0;
  opacity:1;
}

.cta-buttons {
  display:flex;
  justify-content:center;
  gap:2rem;
  flex-direction:column;
  align-items:center;
}

.cta-buttons .focus-button {
  display:inline-flex;
  align-items:center;
  gap:0.5rem;
  font-size:1rem;
  padding:1rem 1.5rem;
}

.explore-card:hover {
  background:rgba(255,
  255,
  255,
  0.05);
  border-color:rgba(255,
  255,
  255,
  0.15);
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,
  0,
  0,
  0.15);
}

.navigation-card {
  background:rgba(255,
  255,
  255,
  0.03);
  border:1px solid rgba(255,
  255,
  255,
  0.08);
  border-radius:28px;
  padding:1.75rem;
  transition:all 0.4s cubic-bezier(0.4,
  0,
  0.2,
  1);
  text-decoration:none;
  display:block;
  text-align:left;
}

/* Navigation card hover effects are now handled in the animation system above */

.navigation-card-icon {
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  background:transparent;
  border:none;
  margin:0 0 1rem 0;
  color:rgba(255,
  255,
  255,
  0.85);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  height: auto;
  background: transparent;
  border: none;
  border-radius: 0;
  margin: 0 0 1rem 0;
  color: rgba(255, 255, 255, 0.85);
  padding: 0;
  width: 40px;
  height: 40px;
  margin-bottom: 1.25rem;
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
}

.navigation-card h3 {
  font-size:1.6rem;
  font-weight:600;
  color:rgba(255, 255, 255, 0.95);
  margin-bottom:1rem;
  line-height:1.3;
}

.navigation-card p {
  font-size:1rem;
  color:rgba(255,
  255,
  255,
  0.7);
  line-height:1.6;
  margin:0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
  margin-bottom: 14px;
  font-size: 0.85rem;
}


body.features-page .main-nav {
  border-bottom:none !important;
}

body.features-page .main-nav.scrolled {
  border-bottom:none !important;
}

.feature-card:hover {
  background:rgba(255,
  255,
  255,
  0.05);
  border-color:rgba(255,
  255,
  255,
  0.12);
}

.manifesto-button {
  display:inline-block;
  padding:1.125rem 1.75rem;
  background:rgba(255,
  255,
  255,
  0.1);
  border:1px solid rgba(255,
  255,
  255,
  0.2);
  border-radius:12px;
  color:#fff !important;
  text-decoration:none !important;
  font-size:1.05rem;
  font-weight:500;
  transition:all 0.3s ease;
  backdrop-filter:blur(10px);
}

.manifesto-button:hover {
  background:rgba(255,
  255,
  255,
  0.15);
  border-color:rgba(255,
  255,
  255,
  0.3);
  transform:translateY(-2px);
}

.use-case-card {
  background:rgba(255,
  255,
  255,
  0.03);
  border:1px solid rgba(255,
  255,
  255,
  0.08);
  border-radius:28px;
  padding:1.5rem !important;
  text-align:left;
}

/* Hover effects completely disabled for non-link cards */
.use-case-card:hover,
.use-case-card:focus,
.use-case-card:active,
body .use-case-card:hover,
body .use-case-card:focus,
body .use-case-card:active,
.features-page .use-case-card:hover,
.features-page .use-case-card:focus,
.features-page .use-case-card:active,
div.use-case-card:hover,
div.use-case-card:focus,
div.use-case-card:active {
  background:rgba(255, 255, 255, 0.03) !important;
  border-color:rgba(255, 255, 255, 0.08) !important;
  transform:none !important;
  box-shadow:none !important;
  opacity:1 !important;
  cursor:default !important;
}

/* Force disable all transitions and animations on hover */
.use-case-card,
.who-helps-card,
.use-case {
  transition: none !important;
  animation: none !important;
}

.use-case-card:hover,
.use-case-card:focus,
.use-case-card:active,
.who-helps-card:hover,
.who-helps-card:focus,
.who-helps-card:active,
.use-case:hover,
.use-case:focus,
.use-case:active {
  transition: none !important;
  animation: none !important;
}

/* .use-case-card:hover {
  background:rgba(255,
  255,
  255,
  0.05);
  border-color:rgba(255,
  255,
  255,
  0.12);
  transform:translateY(-6px);
  box-shadow:0 12px 35px rgba(255,
  255,
  255,
  0.15);
} */

.use-case-card h3 {
  font-size:1.5rem;
  font-weight:600;
  color: var(--text-bright);
  line-height:1.3;
  margin-bottom:1rem !important;
  margin-top:0 !important;
}

.use-case-card p {
  font-size:1rem;
  color: var(--text-secondary);
  line-height:1.6;
  margin:0 !important;
}

.who-helps-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Tablet: 2x2 grid */
@media (max-width: 1024px) and (min-width: 769px) {
  .who-helps-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Mobile: stacked */
@media (max-width: 768px) {
  .who-helps-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  /* Mobile page header top padding with medium spacing */
  .hero-section, .page-header {
    padding: calc(var(--space-md) + 40px) 1.5rem var(--space-sm) 1.5rem !important;
    padding-top: calc(var(--space-md) + 40px + env(safe-area-inset-top));
  }
  
  /* Reduce h1 font size on mobile */
  h1 {
    font-size: 2rem;
  }
  
  .page-header h1, .page-header-narrow h1 {
    font-size: 2rem;
  }
}

.who-helps-card {
  background:rgba(255,
  255,
  255,
  0.03);
  border:1px solid rgba(255,
  255,
  255,
  0.08);
  border-radius:28px;
  padding:1.5rem !important;
  text-align:left;
  min-height: 100%;
}

/* Hover effects completely disabled for non-link cards */
.who-helps-card:hover,
.who-helps-card:focus,
.who-helps-card:active,
body .who-helps-card:hover,
body .who-helps-card:focus,
body .who-helps-card:active,
.features-page .who-helps-card:hover,
.features-page .who-helps-card:focus,
.features-page .who-helps-card:active {
  background:rgba(255, 255, 255, 0.03) !important;
  border-color:rgba(255, 255, 255, 0.08) !important;
  transform:none !important;
  box-shadow:none !important;
  opacity:1 !important;
  cursor:default !important;
}

/* .who-helps-card:hover {
  background:rgba(255,
  255,
  255,
  0.05);
  border-color:rgba(255,
  255,
  255,
  0.12);
  transform:translateY(-6px);
  box-shadow:0 12px 35px rgba(255,
  255,
  255,
  0.15);
} */

.who-helps-card h3 {
  font-size:1.5rem;
  font-weight:600;
  color: var(--text-bright);
  line-height:1.3;
  margin-bottom:1rem !important;
  margin-top:0 !important;
}

.who-helps-card p {
  font-size:1rem;
  color: var(--text-secondary);
  line-height:1.6;
  margin:0 !important;
}

body.research-page #attentionaldesign-content .attentional-design-header {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  justify-content:center;
  max-width:800px;
  margin:0 auto;
}

/* Footer toggle and arrow styles removed - footer is always expanded */

/* Enable dropdowns once JavaScript is loaded */ .dropdown {
  display: block;
}


.mobile-nav-item:nth-child(1) {
  transition-delay: 0.2s;
}

.mobile-nav-item:nth-child(2) {
  transition-delay: 0.25s;
}

.mobile-nav-item:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile-nav-item:nth-child(4) {
  transition-delay: 0.35s;
}

.mobile-nav-item:nth-child(5) {
  transition-delay: 0.4s;
}

.mobile-nav.open .mobile-nav-item {
  opacity: 1;
  transform: translateY(0);
}

/* ===== VISION PAGE NAVIGATION TAGS ===== */ /* Vision Navigation Tags */ .vision-nav-tags {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-nav-tag {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
}

.vision-nav-tag:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.vision-nav-tag.active {
  background: rgba(255, 90, 31, 0.2);
  border-color: rgba(255, 90, 31, 0.4);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255, 90, 31, 0.2);
}

/* Removed sticky behavior for mobile */

/* ===== ADDITIONAL COMPONENT STYLES ===== */

/* Focus Banner CTA flash effect */
.focus-banner-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.focus-banner-cta-button:hover::before {
  left: 100%;
}

.focus-banner-cta-button:hover {
  background: linear-gradient(135deg, rgba(234, 146, 89, 0.25) 0%, rgba(255, 107, 53, 0.2) 100%);
  border-color: rgba(255, 107, 53, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3), 0 0 40px rgba(234, 146, 89, 0.15);
}

@media (max-width: 768px) {
  .focus-banner {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }

  .focus-banner-content {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .focus-banner-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .focus-banner-content p {
    font-size: 1.1rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .focus-banner {
    padding: 2.5rem 1.5rem;
  }

  .focus-banner-content {
    margin-bottom: 1.25rem;
  }

  .focus-banner-content h2 {
    font-size: 2.25rem;
  }

  .focus-banner-content p {
    font-size: 1.25rem;
  }
}

/* Hero starfield */
.hero-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-stars.loaded {
  opacity: 1;
}

.hero-stars .star,
.hero-stars .space-cloud {
  transition: opacity 0.5s ease-in-out;
}

.star {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

.star.small {
  width: 1px;
  height: 1px;
}

.star.medium {
  width: 2px;
  height: 2px;
}

.star.large {
  width: 3px;
  height: 3px;
}

.space-cloud {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 167, 94, 0.28) 0%, rgba(222, 82, 44, 0.14) 40%, rgba(197, 12, 2, 0.035) 70%);
  filter: blur(4px);
  animation: cloudDrift 8s ease-in-out infinite;
}

.space-cloud.small {
  width: 320px;
  height: 320px;
}

.space-cloud.medium {
  width: 480px;
  height: 480px;
}

.space-cloud.large {
  width: 640px;
  height: 640px;
}

.space-cloud.purple-fire {
  width: 768px;
  height: 768px;
}

.space-cloud.navy-orange {
  width: 736px;
  height: 736px;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 0.3; }
}

@keyframes cloudDrift {
  0%, 100% {
    opacity: 0.52;
    transform: scale(1);
  }
  50% {
    opacity: 0.73;
    transform: scale(1.1);
  }
}

/* Hero vignette overlay */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 0%, transparent 25%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 75%, rgba(0, 0, 0, 0.95) 100%);
  z-index: 1;
  pointer-events: none;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  padding: 24px;
  padding: 20px;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(234, 146, 89, 0.4), transparent);
  transition: left 0.5s ease;
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 16px;
  line-height: 1.3;
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-size: 1rem;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}


.feature-card {
  padding: 20px;
}

/* Footer Enhancement Styles - Mobile - Simplified */
.footer-column {
  margin-bottom: 0.5rem;
  border-bottom: none;
}

/* Footer toggle styles removed - footer is always expanded */

/* Footer content lists use same styling as regular footer lists */
.footer-list.footer-content {
  gap: 0.5rem !important;
}

.footer-list.footer-content li {
  margin: 0;
  display: flex;
  align-items: center;
}

.footer-list.footer-content a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

/* Footer hover states */
.footer-list.footer-content a:hover,
.footer-list.footer-content a:active {
  color: rgba(255, 255, 255, 1);
}

/* Footer toggle hover styles removed - footer is always expanded */

/* Remove tap highlight on all interactive elements */ a, button, .cta-button, .nav-link, .mobile-nav-link, .navigation-card, .feature-card, .use-case-card, .who-helps-card, .category-tag, .faq-question {
  -webkit-tap-highlight-color: transparent !important;
}

/* ===== UTILITIES STYLES ===== */ .faq-item.hidden {
  opacity:0;
  transform:translateY(-10px);
  pointer-events:none;
  height:0;
  overflow:hidden;
  margin:0;
  padding:0;
  border:none;
}

.feature h3 {
  font-size:1.5rem;
  font-weight:700;
  color:rgba(255, 255, 255, 0.95);
  margin-bottom:2rem;
  margin-bottom:14px;
  margin-bottom:6rem;
  letter-spacing:-0.01em;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}

.feature p {
  font-size:1rem;
  line-height:inherit;
  color:var(--text-secondary);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cta-center {
  display:flex;
  justify-content:center;
  align-items:center;
  margin-top:4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.feature {
  background:#181818;
  border-radius:14px;
  border:1px solid rgba(255,
  255,
  255,
  0.08);
  box-shadow:0 4px 24px rgba(0,
  0,
  0,
  0.12);
  padding:32px 24px;
  text-align:center;
  transition:box-shadow 0.2s;
  background:rgba(255,
  255,
  255,
  0.02);
  padding:2rem;
  transition:all 0.3s ease;
  position:relative;
  overflow:hidden;
  background: #000000;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.2s;
}

.feature:hover {
  box-shadow:0 8px 32px rgba(255,
  97,
  39,
  0.10);
  background:rgba(255,
  255,
  255,
  0.05);
  border-color:rgba(255,
  255,
  255,
  0.15);
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(0,
  0,
  0,
  0.15);
  box-shadow: 0 8px 32px rgba(255,97,39,0.10);
}

body.support-page .faq-category-tags {
  margin-top:0;
}

.faq-category-tags {
  display:flex;
  justify-content:center;
  margin-bottom:2rem;
  flex-wrap:wrap;
  gap:0.75rem;
  margin-bottom:6rem;
  margin-bottom: 1rem !important;
}

.faq-item {
  margin-bottom:2rem;
  padding-bottom:1.5rem;
  border-bottom:1px solid rgba(255,
  255,
  255,
  0.1);
  border-bottom:none;
  margin:0;
  padding:0;
  transition:opacity 0.3s ease,
  transform 0.3s ease;
}

.faq-item:last-child {
  border-bottom:none;
  margin-bottom:0;
  padding-bottom:0;
}

.faq-item h3 {
  color:rgba(255,
  255,
  255,
  0.9);
  font-size:1.25rem;
  font-weight:600;
  margin-bottom:0.75rem;
}

.faq-item p {
  color:rgba(255,
  255,
  255,
  0.65);
  line-height:1.6;
  margin:0;
}

.feature::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:1px;
  background:linear-gradient(90deg,
  transparent,
  rgba(255,
  255,
  255,
  0.2),
  transparent);
  opacity:0;
  transition:opacity 0.3s ease;
}

.feature:hover::before {
  opacity:1;
}

.feature-value {
  color:rgba(255,
  255,
  255,
  0.9);
  font-size:1.1rem;
  line-height:1.5;
  margin-bottom:2rem;
  font-weight:500;
}

.feature-how {
  color:rgba(255,
  255,
  255,
  0.6);
  font-size:0.95rem;
  line-height:1.6;
  font-style:italic;
}

.cta-content h2 {
  margin-bottom:2rem;
}

.cta-content p {
  font-size:1.1rem;
  color:rgba(255,
  255,
  255,
  0.7);
  margin-bottom:4rem;
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
}

.faq-question {
  width:100%;
  padding:1.5rem 2rem 1.5rem 1.5rem;
  background:none;
  border:none;
  color:#fff;
  font-size:1.1rem;
  font-weight:500;
  text-align:left;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  transition:background-color 0.2s ease;
  white-space:normal;
  overflow:visible;
  text-overflow:clip;
  line-height:1.5;
  font-size:1rem;
}

/* FAQ question hover effects are now handled in the animation system above */

.faq-question[aria-expanded="true"] {
  background:rgba(255,
  255,
  255,
  0.05);
}

.faq-icon {
  transition:transform 0.4s cubic-bezier(0.4,
  0,
  0.2,
  1);
  color:rgba(255,
  255,
  255,
  0.6);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform:rotate(45deg);
}

.faq-answer {
  max-height:0;
  overflow:hidden;
  transition:max-height 0.3s ease-out,
  padding 0.3s ease-out;
  background:rgba(255,
  255,
  255,
  0.02);
  border-top:1px solid rgba(255,
  255,
  255,
  0.05);
  padding:0 2rem 0 1.5rem;
  display:block;
}

.faq-answer p {
  color:rgba(255,
  255,
  255,
  0.7);
  line-height:inherit;
  margin-bottom:2rem;
  margin-top:0;
  max-width:90%;
}

.faq-answer p:first-child {
  margin-top:1rem;
}

.faq-answer p:last-child {
  margin-bottom:0.5rem;
}

.faq-question[aria-expanded="true"]+.faq-answer {
  max-height:500px;
  padding:0.5rem 1.5rem 1.5rem 1.5rem;
}

.faq-link {
  color:rgba(255,
  255,
  255,
  0.8);
  text-decoration:none;
  border-bottom:1px solid rgba(255,
  255,
  255,
  0.3);
  transition:all 0.2s ease;
}

.faq-link:hover {
  color:#fff;
  border-bottom-color:rgba(255,
  255,
  255,
  0.6);
}

.faq-item:first-child .faq-question {
  border-top-left-radius:16px;
  border-top-right-radius:16px;
}

.faq-item:last-child .faq-question {
  border-bottom-left-radius:16px;
  border-bottom-right-radius:16px;
}

.faq-item:last-child .faq-question[aria-expanded="true"] {
  border-bottom-left-radius:0;
  border-bottom-right-radius:0;
}

.faq-item:last-child .faq-answer {
  border-bottom-left-radius:16px;
  border-bottom-right-radius:16px;
}

.faq-question span {
  flex:1;
  margin-right:1rem;
  text-align:left;
}

body.features-page {
  padding-top: 80px !important;
  background:#000000;
}

body.research-page {
  padding-top: 80px !important;
}

.core-feature-item {
  text-align:left;
  position:relative;
  padding:2.5rem;
}

.core-feature-item:nth-child(1)::before, .core-feature-item:nth-child(2)::before {
  content:'';
  position:absolute;
  bottom:0;
  left:2rem;
  right:2rem;
  height:1px;
  background:rgba(255,
  255,
  255,
  0.1);
  display:none;
}

.feature-icon {
  display:flex;
  align-items:center;
  justify-content:center;
  width:64px;
  height:64px;
  background:transparent;
  border:none;
  margin:0 auto 1.5rem auto;
  color:rgba(255,
  255,
  255,
  0.8);
  width:48px;
  height:48px;
  margin-bottom:1rem;
}

.core-feature-item h3 {
  font-size:1.5rem;
  font-weight:600;
  color: var(--text-bright);
  margin-bottom:0.75rem;
  text-align:center;
  padding: 0 2rem;
}

.core-feature-item p {
  font-size:1rem;
  color: var(--text-secondary);
  line-height:1.6;
  margin:0;
  text-align:center;
  padding: 0 2rem;
}

.core-feature-item:nth-child(1)::after, .core-feature-item:nth-child(3)::after {
  display:none;
}

.feature-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.feature-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-large {
  display: inline-block;
  background: #EA9259;
  color: #fff;
  padding: 1.25rem 3rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  box-shadow: 0 12px 32px rgba(234, 146, 89, 0.15);
}

.cta-large:hover {
  background: rgba(255, 130, 70, 1);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(255, 107, 53, 0.4), 0 0 64px rgba(255, 130, 70, 0.25);
}

.feature-content h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.faq-category-tags {
  gap: 0.5rem;
  margin-bottom: 4rem;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4rem);
}

/* Desktop footer toggle styles removed - footer is always expanded */

/* Removed duplicate vision-nav-tags styling */

/* ===== ANIMATIONS STYLES ===== */ .hero-title {
  font-size:3.5rem;
  font-weight:700;
  color:rgba(255, 255, 255, 0.95);
  margin-bottom:2rem;
  line-height:1.1;
  max-width:800px;
  margin-left:auto;
  margin-right:auto;
  font-size:clamp(3rem,
  6vw,
  5.5rem);
  letter-spacing:0;
  margin-bottom:4rem;
  background:linear-gradient(90deg,
  #FFFFFF 0%,
  #FFFFFF 70%,
  #F0F0F0 100%);
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:fadeInUp 0.6s ease-out 0.1s both;
  opacity:0.93;
}

/* ===== ANIMATIONS STYLES ===== */ /* ===== ANIMATIONS STYLES ===== */ .hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
  line-height: 1.05;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 60%, #E8EAED 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.15), 0 0 20px rgba(255, 255, 255, 0.08);
  animation: fadeInUp 0.6s ease-out 0.1s both;
  text-align: center;
}

.hero-subtitle {
  font-size:1.375rem;
  font-weight:500;
  color:rgba(255,
  255,
  255,
  0.8);
  letter-spacing:0.02em;
  margin-bottom:1rem;
  animation:fadeInUp 0.6s ease-out;
  text-align:center;
  max-width:520px;
  margin-left:auto;
  margin-right:auto;
}

.homepage-hero-subtitle {
  font-size:2.5rem !important;
  font-weight:500;
  color:rgba(255,
  255,
  255,
  0.8);
  letter-spacing:0.02em;
  margin-bottom:1rem;
  animation:fadeInUp 0.6s ease-out;
  text-align:center;
  max-width:560px;
  margin-left:auto;
  margin-right:auto;
}

/* Force override for homepage subtitle */
body.home .hero .homepage-hero-subtitle {
  font-size:2.5rem !important;
}

/* ===== NAVIGATION STYLES ===== */

/* Desktop Navigation - Sticky on all devices */
nav.main-nav,
.main-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 11000 !important;
  overflow: visible;
  background: hsla(0,0%,4%,0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: none;
  animation: fadeIn 1s ease-out;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  margin: 0 !important;
}

/* Header visibility behavior for all screen sizes */
.main-nav.header-hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

.main-nav.header-visible {
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}


/* ===== OTHER STYLES ===== */

/* ===== RESET STYLES ===== */ 
/* Body styles - main styles in critical CSS, this adds layout specifics */
body {
  font-family: var(--font-system);
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
  line-height: 1.7;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  opacity: 1;
  transition: opacity 0.2s ease-out;
  padding-top: calc(80px + env(safe-area-inset-top)) !important;
  padding-bottom: env(safe-area-inset-bottom);
  /* Removed transform: translateZ(0) and will-change: scroll-position */
  /* These created unnecessary stacking contexts and performance hints */
}

/* ===== BASE STYLES ===== */ h4 {
  font-size:1.2rem;
  line-height:1.3;
  margin-bottom:0.75rem;
  font-size:1.1rem;
  line-height:1.35;
  margin-bottom:0.625rem;
}


@keyframes starPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
    background-position: -200% 0;
  }
  
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
    background-position: 200% 0;
  }
}

body.research-page .attentional-design-image img {
  width: 75%;
}

/* Main content wrapper to push footer to bottom */
body > *:not(.footer) {
  flex: 1;
}

/* Main content wrapper - grows to fill available space */
.main-content {
  flex: 1;
}

/* ===== BASE STYLES ===== */ h2 {
  font-size:2rem;
  line-height:2.5rem;
  margin-bottom:1rem;
  font-size:2.3rem;
  font-weight:700;
  color:#fff;
  margin-top:4rem;
  margin-bottom:2rem;
  text-align:center;
  letter-spacing:-0.01em;
  line-height:1.2;
}

/* ===== UTILITIES STYLES ===== */ .skip-link:focus {
  top:0;
}

/* ===== OTHER STYLES ===== */ /* ===== VARIABLES STYLES ===== */ :root {
  --icon-sm:16px;
  --icon-md:24px;
  --icon-lg:40px;
}

/* ===== RESET STYLES ===== */ * {
  margin:0;
  padding:0;
  box-sizing:border-box;
}

.text-muted {
  color:rgba(255,
  255,
  255,
  0.45);
  font-size:0.9rem;
  text-align:center;
  margin-top:3rem;
  padding-top:2rem;
  border-top:1px solid rgba(255,
  255,
  255,
  0.1);
}

.text-link {
  color:rgba(255,
  255,
  255,
  0.9);
  font-weight:600;
  text-decoration:none;
  transition:all 0.3s ease;
}

.text-link:hover {
  color:#fff;
  opacity:1;
}

/* ===== OTHER STYLES ===== */
:root {
  --fire:#EA9259;
  --fire-glow:#C50C02;
  --fire-bright:#FFD700;
  --fire-dark:#8B0000;
  --fire-orange:#EA9259;
  --fire-red:#C50C02;
  --bg:#000000;
  --fg:#fff;
  --text-muted:rgba(255,
  255,
  255,
  0.45);
  --text-bright:rgba(255,
  255,
  255,
  1);
  --text-secondary:rgba(255,
  255,
  255,
  0.55);
  --glow-color:#EA9259;
  --color-primary:#EA9259;
  --color-background:#0a0a0a;
  --color-background-alt:#181818;
  --color-text:#f5f5f5;
  --color-accent:#ffffff;
  --font-system:'SF Pro Display',
  'SF Pro Text',
  -apple-system,
  BlinkMacSystemFont,
  'Segoe UI',
  Roboto,
  Oxygen,
  Ubuntu,
  Cantarell,
  sans-serif;
  --container-max:800px;
  --space-xs:1rem;
  --space-sm:2rem;
  --space-md:4rem;
  --space-lg:6rem;
  --space-xl:10rem;
}

@keyframes starPulse {
  100% {
    background-position: 200% 0;
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

.focus-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.manifesto-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.manifesto-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 20px;
}

.belief-statement {
  font-size:2rem;
  font-weight:700;
  color:rgba(255,
  255,
  255,
  0.8);
  text-align:center;
  margin-bottom:40px;
  line-height:1.4;
}

.manifesto-text {
  margin-bottom:40px;
}

.audience-item:hover {
  box-shadow:0 6px 24px rgba(234,
  146,
  89,
  0.10);
  border-color:#EA9259;
  background:rgba(255,
  255,
  255,
  0.05);
  border-color:rgba(255,
  255,
  255,
  0.15);
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,
  0,
  0,
  0.15);
}

.social-link {
  display:flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:32px;
  border-radius:10px;
  background:rgba(255,
  255,
  255,
  0.05);
  transition:background-color 0.2s ease-in-out,
  transform 0.2s ease-in-out;
}

/* Social link hover effects are now handled in the animation system above */

.social-link svg {
  width:var(--icon-sm);
  height:var(--icon-sm);
}

.page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  pointer-events: none;
}

.page-transition-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  
  .lazy-loading,
  .lazy-loaded {
    transition: none !important;
  }
}



#starfield {
  display:none !important;
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:1;
  pointer-events:none;
}

/* Lazy Loading States */
.lazy-placeholder {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.lazy-loading {
  opacity: 0.7;
  filter: blur(2px);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.lazy-loaded {
  opacity: 1;
  filter: none;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.lazy-error {
  opacity: 0.5;
  filter: grayscale(100%);
}


:focus-visible {
  outline:2px solid var(--fire);
  outline-offset:2px;
}

.logo-icon {
  width:32px;
  height:32px;
  filter:drop-shadow(0 2px 8px rgba(255,
  97,
  39,
  0.3));
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
}

.scroll-indicator {
  cursor:pointer;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:0.5rem;
  text-align:center;
  width:100%;
  margin:0 auto;
  padding:0;
  bottom: 24px;
  bottom: 20px;
}

.scroll-text {
  text-transform:uppercase;
  letter-spacing:0.15em;
  font-weight:600;
  font-size:10px;
  text-align:center;
  display:block;
  margin:0;
  padding:0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-flow-custom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap-2xl);
  align-items: flex-start;
  justify-content: center;
  border: none;
  border-radius: 28px;
  padding: var(--space-md);
  background: transparent !important;
  margin-top: var(--space-sm);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.process-step-custom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: auto;
  margin: 0;
  padding: var(--space-xs);
  position: relative;
  background: transparent;
  justify-content: center;
  min-height: 200px;
}

.process-step-custom:not(:last-child)::after {
  content:'';
  position:absolute;
  right:-1rem;
  top:0;
  bottom:0;
  width:1px;
  background:rgba(255,
  255,
  255,
  0.1);
  display:none;
}

.process-step-custom .step-number {
  margin: 0 0 var(--space-xs) 0;
  padding: 0;
}

.process-step-custom .step-icon {
  margin: 0 auto var(--space-md) auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0.8;
}

.process-step-custom .step-icon svg {
  width: 32px;
  height: 32px;
}

.process-step-custom .step-content {
  margin: 0;
  padding: 0;
  text-align: center;
}

.process-step-custom .step-content h4 {
  margin: 0 0 var(--space-sm) 0;
  padding: 0;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-bright);
}

.process-step-custom .step-content p {
  margin: 0;
  padding: 0;
  text-align: center;
  line-height: 1.7;
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 300px;
}

/* Step Screenshot Styling Removed - Text Only Layout */

/* Responsive Spacing for How It Works Section - Text Only Layout */
@media (max-width: 1200px) {
  .process-flow-custom {
    gap: var(--grid-gap-xl);
    padding: var(--space-sm);
  }
  
  .process-step-custom {
    padding: var(--space-xs);
  }
}

@media (max-width: 1024px) {
  .process-flow-custom {
    grid-template-columns: 1fr;
    gap: var(--grid-gap-lg);
    padding: var(--space-sm);
  }
  
  .process-step-custom {
    padding: var(--space-xs);
    max-width: 400px;
    margin: 0 auto;
  }
  
  .process-step-custom:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-flow-custom {
    gap: var(--grid-gap-md);
    padding: var(--space-sm);
    margin-top: var(--space-xs);
  }
  
  .process-step-custom {
    padding: var(--space-xs);
    min-height: 150px;
  }
  
  .process-step-custom .step-content h4 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
  }
  
  .process-step-custom .step-content p {
    font-size: 1rem;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .process-flow-custom {
    gap: var(--grid-gap-sm);
    padding: var(--space-sm);
    margin-top: var(--space-xs);
  }
  
  .process-step-custom {
    padding: var(--space-xs);
    min-height: 120px;
  }
  
  .process-step-custom .step-content h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
  }
  
  .process-step-custom .step-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 250px;
  }
}

.apple-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav-cta-button .apple-icon {
  width: 14px;
  height: 14px;
  margin-right: 0.5rem;
  color: #fff;
  fill: currentColor;
}

.mobile-nav-cta-button .apple-icon {
  width: 14px;
  height: 14px;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  z-index: 1001;
  font-family: var(--font-system);
}

.mobile-menu-toggle:hover {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.mobile-menu-toggle:active {
  transform: translateY(0);
}

body.home {
  padding-top: 80px !important;
}

.error-content {
  max-width:600px;
}

.error-number {
  font-size:8rem;
  font-weight:900;
  line-height:1;
  margin-bottom:4rem;
  color:rgba(255,
  255,
  255,
  0.1);
}

.error-title {
  font-size:2.5rem;
  font-weight:700;
  margin-bottom:6rem;
  color:#fff;
  font-size:2rem;
}

.error-description {
  font-size:1.2rem;
  color:rgba(255,
  255,
  255,
  0.7);
  margin-bottom:6rem;
  line-height:1.6;
  font-size:1.1rem;
}

.error-actions {
  display:flex;
  gap:6rem;
  justify-content:center;
  flex-wrap:wrap;
  flex-direction:column;
  align-items:center;
}

.helpful-links {
  max-width:800px;
  margin:0 auto;
  padding:4rem 2rem;
  text-align:center;
  padding:2rem 1rem;
}

.helpful-links h2 {
  margin-bottom:4rem;
}

body.vision-page .fade-in-up {
  opacity:1 !important;
  transform:none !important;
  transition:none !important;
}

body.vision-page .manifesto-quote {
  text-align:left;
}

body.vision-page .manifesto-list {
  text-align:left;
}

body.vision-page #founders {
  background:rgba(255,
  255,
  255,
  0.02);
  border:1px solid rgba(255,
  255,
  255,
  0.08);
  border-radius:24px;
  margin:60px auto;
  padding:60px 0;
  position:relative;
  overflow:hidden;
  background:transparent !important;
  border:none !important;
  border-radius:0 !important;
  margin:0 !important;
  padding:4rem 0 !important;
  padding:3rem 0 !important;
  padding:2.5rem 0 !important;
}

body.vision-page #founders::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:radial-gradient(circle at 20% 30%,
  rgba(255,
  255,
  255,
  0.03) 0%,
  transparent 50%);
  pointer-events:none;
}

body.vision-page {
  padding-top: 80px !important;
}

body.vision-page #founders .manifesto-question {
  background:transparent;
  border:none;
  border-radius:0;
  padding:0;
  margin-top:3rem;
  margin-bottom:2rem;
  position:relative;
  font-size:1.3rem !important;
  font-weight:600 !important;
  color:#fff !important;
  line-height:1.4;
  text-align:left;
  border-left:2px solid rgba(255, 255, 255, 0.2);
  padding-left:1.2rem;
}

body.vision-page .manifesto-intro {
  color:rgba(255,
  255,
  255,
  0.75) !important;
  font-size:1.025rem;
  line-height:1.6;
  font-weight:500;
  text-align:left;
  max-width:700px;
  margin:0 0 2rem 0;
}

body.vision-page .manifesto-question {
  font-size:1.5rem !important;
  font-weight:600 !important;
  margin-bottom:1.5rem !important;
  color:#fff !important;
  line-height:1.3;
  text-align:left;
  border-left:3px solid rgba(255,
  255,
  255,
  0.2);
  padding-left:1.5rem;
}

body.research-page #attentionaldesign {
  padding:2.5rem 0;
  margin:0;
  scroll-margin-top:40px;
  width:100%;
  position:relative;
  background:transparent;
  padding-top: var(--space-lg);
}

body.research-page .attentional-design-image img {
  width:100%;
  height:auto;
  border-radius:12px;
  opacity:0.9;
  display:block;
}

body.research-page .attentional-design-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

body.research-page .attentional-design-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

body.research-page .attentional-design-content .section-description {
  max-width: 800px;
  margin: 0 auto;
}

body.research-page .principles-heading {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

body.research-page .principles-section {
  max-width: 800px;
  margin: 0 auto;
}

body.research-page .whitepaper-section {
  padding-top: var(--space-lg);
}

body.research-page .whitepaper-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}

body.research-page .whitepaper-image {
  order: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

body.research-page .whitepaper-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
}


body.research-page .section-description,
body.research-page .section-intro,
body.research-page .whitepaper-subtext {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

body.vision-page #founders .founder-question:last-child {
  margin-bottom:0;
}

body.vision-page .placeholder-content {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0.75rem;
  color:rgba(255,
  255,
  255,
  0.4);
}

body.vision-page .placeholder-content svg {
  display:none;
}

body.vision-page .placeholder-content span {
  font-size:1rem;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:0.05em;
  font-size:0.8rem;
  font-size:0.75rem;
}

.category-tag {
  background:rgba(255,
  255,
  255,
  0.05);
  border:1px solid rgba(255,
  255,
  255,
  0.1);
  border-radius:20px;
  padding:8px 16px;
  color:rgba(255,
  255,
  255,
  0.7);
  font-size:0.875rem;
  font-weight:500;
  cursor:pointer;
  transition:all 0.3s ease;
  white-space:nowrap;
  padding:0.5rem 1rem;
  font-size:0.9rem;
  padding:0.4rem 0.8rem;
  font-size:0.85rem;
  flex: 0 1 auto;
  padding: 8px 12px;
  font-size: 0.9rem;
  text-align: center;
  white-space: nowrap;
  min-width: fit-content;
  padding: 6px 10px;
  font-size: 0.85rem;
}

.category-tag:hover {
  background:rgba(255,
  255,
  255,
  0.1);
  border-color:rgba(255,
  255,
  255,
  0.2);
  color:rgba(255,
  255,
  255,
  0.9);
}

.category-tag.active {
  background:rgba(255,
  100,
  39,
  0.2);
  border-color:rgba(255,
  100,
  39,
  0.4);
  color:#fff;
  background:rgba(255,
  255,
  255,
  0.15);
  border-color:rgba(255,
  255,
  255,
  0.3);
}

.contact-support-content {
  text-align:center;
  max-width:800px;
  margin:0 auto;
  max-width:600px;
}

.support-email:hover {
  background:linear-gradient(135deg,
  rgba(255,
  200,
  150,
  0.25) 0%,
  rgba(255,
  180,
  120,
  0.2) 100%);
  border-color:rgba(255,
  200,
  150,
  0.6);
  transform:translateY(-2px);
  box-shadow:0 8px 30px rgba(255,
  200,
  150,
  0.3),
  0 0 40px rgba(255,
  200,
  150,
  0.15);
}

.page-subtitle {
  font-size:1.2rem;
  color:rgba(255,
  255,
  255,
  0.7);
  margin-bottom: var(--space-lg);
  line-height:1.6;
}

.use-cases-content {
  text-align:center;
  max-width:800px;
  margin:0 auto 3rem auto;
}

.use-cases-content p {
  font-size:1.1rem;
  line-height:1.7;
  color:var(--text-secondary);
  margin-bottom:2rem;
}

.use-case {
  background:rgba(255,
  255,
  255,
  0.02);
  border:1px solid rgba(255,
  255,
  255,
  0.08);
  border-radius:14px;
  padding:2rem;
  text-align:center;
}

/* Hover effects completely disabled for use-case cards */
.use-case:hover,
.use-case:focus,
.use-case:active,
body .use-case:hover,
body .use-case:focus,
body .use-case:active,
.features-page .use-case:hover,
.features-page .use-case:focus,
.features-page .use-case:active {
  background:rgba(255, 255, 255, 0.02) !important;
  border-color:rgba(255, 255, 255, 0.08) !important;
  transform:none !important;
  box-shadow:none !important;
  opacity:1 !important;
  cursor:default !important;
}

/* .use-case:hover {
  background:rgba(255,
  255,
  255,
  0.05);
  border-color:rgba(255,
  255,
  255,
  0.15);
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,
  0,
  0,
  0.15);
} */

.use-case h3 {
  font-size:1.1rem;
  font-weight:600;
  color:rgba(255, 255, 255, 0.95);
  margin-bottom:0.75rem;
}

.use-case p {
  color:rgba(255,
  255,
  255,
  0.65);
  font-size:0.9rem;
  line-height:1.5;
}

.human-lead {
  font-size:1.2rem;
  color:rgba(255,
  255,
  255,
  0.7);
  margin-bottom:6rem;
  line-height:1.6;
}

.manifesto-quote {
  font-size:2rem;
  font-weight:700;
  color:rgba(255,
  255,
  255,
  0.8);
  text-align:center;
  margin-bottom:40px;
  line-height:1.4;
}

.manifesto-list {
  list-style:none;
  margin:2rem 0;
}

.manifesto-list li {
  position:relative;
  padding-left:2rem;
  margin-bottom:2rem;
  font-size:1.1rem;
  line-height:1.7;
  color:var(--text-secondary);
}

.manifesto-list li:before {
  content:'✦';
  position:absolute;
  left:0;
  color:rgba(255,
  255,
  255,
  0.6);
}

.mission-item {
  background:rgba(255,
  255,
  255,
  0.03);
  border:1px solid rgba(255,
  255,
  255,
  0.1);
  border-radius:14px;
  padding:2rem;
  text-align:center;
  transition:all 0.3s ease;
  padding:1.5rem;
}

.mission-item:hover {
  background:rgba(255,
  255,
  255,
  0.05);
  border-color:rgba(255,
  255,
  255,
  0.2);
  transform:translateY(-4px);
}

.mission-item h3 {
  font-size:1.3rem;
  font-weight:600;
  margin-bottom:2rem;
  color:rgba(255, 255, 255, 0.95);
}

.mission-item p {
  font-size:1.1rem;
  line-height:1.7;
  color:var(--text-secondary);
  margin-bottom:2rem;
}

.founder-question {
  margin-bottom:6rem;
}

.founder-question h3 {
  font-size:1.5rem !important;
  font-weight:600 !important;
  margin-bottom:1.5rem !important;
  color:rgba(255, 255, 255, 0.95) !important;
}

.founder-question p {
  font-size:1.1rem;
  line-height:1.7;
  color:var(--text-secondary);
  margin-bottom:2rem;
}

.contact-support-content h2 {
  margin-bottom:2rem;
}

.contact-support-content p {
  font-size:1.1rem;
  line-height:1.7;
  color:var(--text-secondary);
  margin-bottom:2rem;
}

.info-box {
  background:rgba(255,
  255,
  255,
  0.05);
  border:1px solid rgba(255,
  255,
  255,
  0.1);
  border-radius:14px;
  padding:1.5rem;
  margin:2rem 0;
}

.info-box h4 {
  color:#fff;
  margin-bottom:2rem;
  font-size:1.2rem;
  font-weight:600;
}

.info-box ul {
  margin:0;
  padding-left:1.5rem;
}

.info-box li {
  margin-bottom:0.5rem;
}

.sitemap-item a {
  display:inline-block;
  color:#fff;
  text-decoration:none;
  font-weight:500;
  border-bottom:1px dashed rgba(255,
  255,
  255,
  0.15);
  padding-bottom:2px;
  word-break:break-word;
}

.sitemap-item a:hover {
  border-bottom-color:rgba(255,
  255,
  255,
  0.45);
}

.submit-btn:hover {
  background:rgba(255,
  255,
  255,
  0.15);
  border-color:rgba(255,
  255,
  255,
  0.5);
  transform:translateY(-2px);
}

.logo-preview {
  width:80px;
  height:80px;
  margin-bottom:2rem;
  border-radius:8px;
  transition:transform 0.2s ease;
}

.logo-preview:hover {
  transform:scale(1.05);
}

.screenshot-preview {
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:8px;
  margin-bottom:2rem;
  border:1px solid rgba(255,
  255,
  255,
  0.1);
  transition:border-color 0.2s ease;
}

.screenshot-preview:hover {
  border-color:rgba(255,
  255,
  255,
  0.2);
}

.download-link {
  color:rgba(255,
  255,
  255,
  0.8);
  text-decoration:none;
  font-weight:500;
  padding:0.5rem 1rem;
  border:1px solid rgba(255,
  255,
  255,
  0.2);
  border-radius:6px;
  transition:all 0.2s ease;
  display:inline-block;
  margin-top:0.5rem;
}

.download-link:hover {
  color:#fff;
  border-color:rgba(255,
  255,
  255,
  0.4);
  background:rgba(255,
  255,
  255,
  0.05);
}

.key-facts-list {
  list-style:none;
  padding:0;
  margin:0;
}

.key-facts-list li {
  margin-bottom:0.5rem;
  padding-left:1.5rem;
  position:relative;
  color:rgba(255,
  255,
  255,
  0.8);
  line-height:1.5;
}

.key-facts-list li:before {
  content:'•';
  position:absolute;
  left:0;
  color:rgba(255,
  255,
  255,
  0.6);
  font-weight:bold;
}

.use-case-icon {
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  width:auto;
  height:auto;
  background:transparent;
  border:none;
  border-radius:0;
  margin:0 0 1rem 0 !important;
  color:rgba(255,
  255,
  255,
  0.8);
  padding:0;
  width:56px;
  height:56px;
  margin-bottom:1.25rem;
}

.who-helps-icon {
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  background:transparent;
  border:none;
  border-radius:0;
  margin:0 0 1rem 0 !important;
  color:rgba(255,
  255,
  255,
  0.8);
  padding:0;
  width:56px;
  height:56px;
}

.use-case-thumbnail {
  width:45px;
  height:45px;
}

.use-case-thumbnail img {
  width:24px;
  height:24px;
}

.use-case-content h3 {
  font-size:1.1rem;
}

.use-case-content p {
  font-size:0.85rem;
}

.audience-thumbnail img {
  width:24px;
  height:24px;
}

.audience-content h3 {
  font-size:1.1rem;
}

.audience-content p {
  font-size:0.85rem;
}

body.research-page .whitepaper-image img {
  height:auto;
  display:block;
  border-radius:12px;
  margin:0 auto;
}

body.research-page .attentional-design-image img {
  width: 100%;
}

body.research-page #attentionaldesign-content .attentional-design-image {
  grid-column:1;
  justify-self:center;
  grid-column:auto;
}

body.research-page #attentionaldesign-content .attentional-design-content {
  grid-column:2;
  text-align:left;
  grid-column:auto;
}

.focus-text {
  flex: 1;
  max-width: 500px;
  text-align: left;
  max-width: 520px;
  flex: none;
  max-width: 100%;
  text-align: center;
}

/* Time SVG Background */ .time-svg-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.1;
  z-index: 1;
}

.time-svg-bg svg {
  width: 100%;
  height: auto;
  max-width: 150px;
}

/* Asteroid Image */ .asteroid-img {
  display: block;
  margin: 48px auto 0 auto;
  max-width: 220px;
  width: 100%;
  filter: drop-shadow(0 8px 32px #000a);
}

/* Belief Statement */ .belief-statement {
  font-size: 1.25rem;
  font-weight: 500;
  color: #EA9259;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.4;
  font-style: italic;
}

.benefit-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.benefit-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.benefit-icon {
  font-size: 1.5rem;
  margin: 0 auto 16px auto;
  color: rgba(255, 255, 255, 0.65);
  opacity: 0.8;
  text-align: center;
  filter: drop-shadow(0 1px 4px rgba(255, 255, 255, 0.1));
  font-size: 1.25rem;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.benefit-outcome {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  margin-bottom: 14px;
  margin-bottom: 12px;
}

.outcome-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.8;
  font-size: 0.7rem;
}

/* Human-Centered Design */ .human-centered-design {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 4rem 0;
  overflow: hidden;
}

.human-center {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3rem;
}

.human-avatar {
  position: relative;
  margin-bottom: 1.5rem;
}

.avatar-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
}

.human-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
  font-size: 1.75rem;
}

.human-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  font-size: 1rem;
}

/* Audience Orbit */ .audience-orbit {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-ring:nth-child(1) {
  width: 300px;
  height: 300px;
  animation-duration: 80s;
  animation-direction: reverse;
}

.orbit-ring:nth-child(2) {
  width: 400px;
  height: 400px;
  animation-duration: 100s;
}

.orbit-ring:nth-child(3) {
  width: 500px;
  height: 500px;
  animation-duration: 120s;
  animation-direction: reverse;
}

/* Connection Lines */ .connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.connection-path:nth-child(2) {
  animation-delay: 0.5s;
}

.connection-path:nth-child(3) {
  animation-delay: 1s;
}

.connection-path:nth-child(4) {
  animation-delay: 1.5s;
}

.connection-path:nth-child(5) {
  animation-delay: 2s;
}

.connection-path:nth-child(6) {
  animation-delay: 2.5s;
}

/* Human Philosophy */ .human-philosophy {
  margin: 4rem 0;
}

.philosophy-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  padding: 1.25rem;
}

.philosophy-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.philosophy-item:hover::before {
  left: 100%;
}

.philosophy-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.philosophy-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.1));
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.philosophy-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.philosophy-item p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Closing Statement */ .human-closing {
  margin: 4rem 0 2rem 0;
  text-align: center;
}

.closing-quote {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  padding: 2rem 1.5rem;
}

.quote-text {
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  font-size: 1.1rem;
}

.quote-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  border-radius: 16px;
  z-index: 0;
}

.get-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  font-weight: 300;
}

/* Scroll Indicator */ .scroll-indicator {
  display: none;
  /* Hidden by default on all pages */
    flex-direction: column;
  align-items: center;
  gap: 12px;
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.7;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 20;
  pointer-events: auto;
}

/* Show scroll indicator only on homepage */ body.home .scroll-indicator {
  display: flex;
}

.scroll-indicator:hover {
  opacity: 1;
}

.chevron-down {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.45);
}

/* Human-Centered Design Mobile */ .human-centered-design {
  min-height: 500px;
  margin: 2rem 0;
}

.audience-orbit {
  height: 300px;
  height: 250px;
}

/* Mobile scroll indicator */ .scroll-text {
  display: none;
}

/* Human-Centered Design Ultra-Compact */ .human-centered-design {
  min-height: 400px;
  margin: 1.5rem 0;
}

.process-step {
  max-width: 160px;
}

.digital-clock-bg {
  width: 150px;
  opacity: 0.08;
}

/* ===== MEDIA QUERIES ===== */

/* Tablet Navigation - Maximum compact spacing */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-container {
    padding: 1rem 2%;
  }
  
  .nav-links {
    gap: 1.25rem;
  }
  
  .nav-cta-button {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
  
  .logo-text {
    font-size: 0.95rem;
  }
  
  /* Footer adjustments for tablet screens */
  .footer-content {
    gap: 60px;
  }
  
  .footer-links {
    gap: 40px;
  }
}

/* Small Desktop Navigation - Reduce spacing to prevent overlap */
@media (min-width: 1025px) and (max-width: 1200px) {
  .nav-container {
    padding: 1rem 3%;
  }
  
  .nav-links {
    gap: 1.5rem;
  }
  
  .nav-cta-button {
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
  }
  
  /* Footer adjustments for small desktop screens */
  .footer-content {
    gap: 80px;
  }
  
  .footer-links {
    gap: 50px;
  }
}

/* Desktop Navigation - Show nav-links, hide mobile menu */
@media (min-width: 1025px) {
  .nav-links {
    display: flex !important;
  }
  
  .nav-cta {
    display: flex !important;
  }
  
  .mobile-menu-toggle {
    display: none !important;
  }
  
  .mobile-nav {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
  
  /* Desktop footer styles - always expanded */
}

/* Tablet and Mobile Navigation - Hide nav-links, show mobile menu */
@media (max-width: 1200px) {
  .nav-links {
    display: none !important;
  }
  
  .nav-cta {
    display: none !important;
  }
  
  .mobile-menu-toggle {
    display: flex !important;
  }
  
  .nav-container {
    padding: 1rem 20px;
  }
  
  .nav-logo {
    z-index: 1001;
  }
  
  .logo-text {
    font-size: 1rem;
  }
  
  .hero h1 {
    font-size: clamp(2.8rem, 8vw, 4rem);
    line-height: 1.15;
    margin-bottom: var(--space-xs);
  }
  
  /* Footer responsive adjustments */
  .footer-container {
    padding: 0 20px;
    min-width: 270px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  /* Slightly reduce social button sizes on mobile */
  .footer-social .social-link {
    width: 34px;
    height: 34px;
  }
  
  .footer-social .social-link svg {
    width: 18px !important;
    height: 18px !important;
  }
  
  .footer-social .social-link[href*="linkedin"] svg {
    width: 15px !important;
    height: 15px !important;
  }
  
  .footer-social .social-link[href*="substack"] svg {
    width: 20px !important;
    height: 20px !important;
  }
  
  /* Ensure footer description doesn't get cut off */
  .footer-description {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    text-align: left;
  }
  
  /* Ensure all footer text is left-aligned on mobile */
  .footer-heading,
  .footer-copyright,
  .footer-logo-text,
  .footer-list li a {
    text-align: left;
  }
  
  /* Navigation cards responsive */
  .navigation-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  /* Mobile header show/hide on scroll - now handled in base styles */
  
  /* Mobile-specific header enhancements - ensure sticky navigation */
  .main-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100%;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    background: rgba(4, 4, 4, 0.95) !important;
    z-index: 11000 !important;
  }
  
  /* Add subtle shadow when header is visible on mobile */
  .main-nav.header-visible {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3) !important;
  }
  
  /* Smooth transition for shadow */
  .main-nav {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out !important;
  }
  
  /* Add padding to body to account for fixed header */
  body {
    padding-top: 70px !important;
  }
  
  /* Adjust body padding for smaller mobile screens */
  @media (max-width: 480px) {
    body {
      padding-top: 65px !important;
    }
  }
  
  /* Adjust body padding for very small screens */
  @media (max-width: 360px) {
    body {
      padding-top: 60px !important;
    }
  }
  
  /* Mobile footer - simplified expanded layout */
  
  .footer-column .footer-content {
    max-height: none !important;
    opacity: 1 !important;
    overflow: visible !important;
    padding: 0 0 0.25rem 0 !important;
  }
  
  .footer-heading {
    padding: 0 !important;
    margin: 1rem 0 0.125rem 0 !important;
  }
  
  /* Mobile footer styles - always expanded */
  
  /* Banner images full width with no border radius on mobile */
  body.research-page .attentional-design-image,
  body.research-page .whitepaper-image,
  body.features-page .how-it-works-banner,
  body.features-page .core-features-banner,
  body.features-page .people-help-banner {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
  }
  
  body.research-page .attentional-design-image img,
  body.research-page .whitepaper-image img,
  body.features-page .how-it-works-banner img,
  body.features-page .core-features-banner img,
  body.features-page .people-help-banner img {
    border-radius: 0;
    width: 100%;
    display: block;
  }
}

/* Navigation cards - single column on medium screens */
@media (max-width: 900px) {
  .navigation-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
  .hero-content {
    gap: 0.5rem;
  }
  
  .hero-container {
    gap: 0.5rem;
  }
  
  .hero .homepage-hero-subtitle,
  body.home .hero .homepage-hero-subtitle,
  .hero-container .hero-content .homepage-hero-subtitle {
    font-size: 1.25rem !important;
    max-width: 80vw;
  }
  
  .context-section .section-title {
    font-size: 1.5rem;
  }
  
  .footer-container {
    padding: 0 20px;
    min-width: 260px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
  
  /* Reduce social button sizes on mobile */
  .footer-social .social-link {
    width: 32px;
    height: 32px;
  }
  
  .footer-social .social-link svg {
    width: 16px !important;
    height: 16px !important;
  }
  
  .footer-social .social-link[href*="linkedin"] svg {
    width: 14px !important;
    height: 14px !important;
  }
  
  .footer-social .social-link[href*="substack"] svg {
    width: 18px !important;
    height: 18px !important;
  }
  
  /* Ensure footer description doesn't get cut off */
  .footer-description {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    text-align: left;
  }
  
  /* Ensure all footer text is left-aligned on very small mobile screens */
  .footer-heading,
  .footer-copyright,
  .footer-logo-text,
  .footer-list li a {
    text-align: left;
  }
  
  /* Navigation cards single column on very small screens */
  .navigation-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .logo-text {
    font-size: 0.9rem;
  }
  
  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
  }
}

/* Very small screens - prevent footer cutoff */
@media (max-width: 360px) {
  .footer-container {
    padding: 0 20px;
    min-width: 240px;
  }
  
  .footer-social {
    gap: 12px;
  }
  
  .footer-social .social-link {
    width: 30px;
    height: 30px;
  }
  
  .footer-social .social-link svg {
    width: 14px !important;
    height: 14px !important;
  }
  
  .footer-social .social-link[href*="linkedin"] svg {
    width: 12px !important;
    height: 12px !important;
  }
  
  .footer-social .social-link[href*="substack"] svg {
    width: 16px !important;
    height: 16px !important;
  }
}

/* Disable hover effects on mobile devices */
@media (max-width: 768px) {
  /* Optimize mobile scrolling performance */
  html {
    scroll-behavior: smooth;
  }
  
  body {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }
  
  .hero .homepage-hero-subtitle,
  body.home .hero .homepage-hero-subtitle,
  .hero-container .hero-content .homepage-hero-subtitle {
    font-size: 1.75rem !important;
    max-width: 80vw;
  }
  
  .context-section .section-title {
    font-size: 2rem;
  }
}

/* FINAL OVERRIDE - Force disable ALL hover effects on feature cards */
.features-page .use-case-card:hover,
.features-page .who-helps-card:hover,
.features-page .use-case:hover,
.features-page .use-case-card:focus,
.features-page .who-helps-card:focus,
.features-page .use-case:focus,
.features-page .use-case-card:active,
.features-page .who-helps-card:active,
.features-page .use-case:active {
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  transform: none !important;
  box-shadow: none !important;
  opacity: 1 !important;
  cursor: default !important;
  transition: none !important;
  animation: none !important;
}

.clock-number {
  font-size: 3rem;
}

.clock-number:last-child {
  font-size: 1.5rem;
}

/* FINAL MOBILE OVERRIDES - Maximum specificity */
@media (max-width: 768px) and (min-width: 481px) {
  .hero-content {
    gap: 0.75rem;
  }
  
  .hero-container {
    gap: 0.75rem;
  }
  
  .hero .homepage-hero-subtitle,
  body.home .hero .homepage-hero-subtitle,
  .hero-container .hero-content .homepage-hero-subtitle,
  .hero-container .homepage-hero-subtitle {
    font-size: 1.75rem !important;
    max-width: 80vw !important;
  }
}

@media (max-width: 480px) {
  .hero .homepage-hero-subtitle,
  body.home .hero .homepage-hero-subtitle,
  .hero-container .hero-content .homepage-hero-subtitle,
  .hero-container .homepage-hero-subtitle {
    font-size: 1.25rem !important;
    max-width: 80vw !important;
  }
}

/* Mobile styles for founders QA section */
@media (max-width: 768px) {
  body.vision-page #founders .manifesto-question {
    font-size: 1.1rem !important;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left-width: 2px;
  }
  
  body.vision-page #founders .card-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  body.vision-page #founders .card-description strong {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  body.vision-page #founders .manifesto-question {
    font-size: 1rem !important;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    padding-left: 0.75rem;
    border-left-width: 1px;
  }
  
  body.vision-page #founders .card-description {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
  }
  
  body.vision-page #founders .card-description strong {
    font-size: 0.95rem;
  }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact page body padding and background */
body.contact-page {
  padding-top: 80px !important;
  background: #000 !important;
  --container-max: 1200px;
}

/* Contact page - remove all backgrounds */
body.contact-page .features-section {
  background: transparent !important;
}

body.contact-page .container {
  background: transparent !important;
}

body.contact-page .features-section > .container {
  padding: 0;
  max-width: 1200px;
}

/* Remove page header background for contact page */
body.contact-page .page-header {
  background: transparent !important;
}

/* Remove page header overlay for contact page */
body.contact-page .page-header::before {
  background: transparent !important;
  display: none !important;
}


body.contact-page main {
  background: #000 !important;
}

/* Contact grid styling to match research page 4-cell layout */
body.contact-page .core-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 0;
  background: transparent;
  border-radius: 0;
}

body.contact-page .core-feature-item {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 1.5rem !important;
  text-align: left;
}

/* Remove any pseudo-element backgrounds on contact page */
body.contact-page .core-feature-item::before,
body.contact-page .core-feature-item::after {
  display: none !important;
  background: transparent !important;
}

@media (max-width: 1200px) {
  body.contact-page .core-features-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 768px) {
  body.contact-page .core-features-grid { 
    grid-template-columns: 1fr; 
    gap: 1.5rem;
    margin: 0;
    padding: 0 1.5rem;
  }
  body.contact-page .features-section > .container {
    padding: 0 1.5rem;
  }
  body.contact-page .core-feature-item {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  body.contact-page .core-feature-item {
    padding: 1.5rem;
  }
}

/* Contact page feature icons */
body.contact-page .feature-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 48px;
  height: 48px;
  margin: 0 0 1rem 0;
  color: rgba(255, 255, 255, 0.9);
  background: transparent !important;
  border: none !important;
  padding: 0;
}

/* Contact page typography - matching use cases cards */
body.contact-page .core-feature-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.3;
  margin-bottom: 1rem !important;
  margin-top: 0 !important;
  text-align: left !important;
  padding: 0 !important;
}

body.contact-page .core-feature-item p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 !important;
  text-align: left !important;
  padding: 0 !important;
}

/* Contact links */
body.contact-page .contact-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease, background-size 0.3s ease;
  display: inline-block;
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
  margin-top: 0.5rem;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
}

body.contact-page .contact-link:hover {
  color: #fff;
  background-size: 0 1px;
  text-decoration: none;
}

body.contact-page .contact-link:focus {
  outline: none;
  color: #fff;
  background-size: 0 1px;
  text-decoration: none;
}

/* Process flow styling - full width, no background/outline */




/* Mobile hover prevention for contact page */
@media (hover: none) and (pointer: coarse) {
  body.contact-page .contact-link:hover {
    color: rgba(255, 255, 255, 0.9) !important;
    background-size: 0 1px !important;
  }
}

