/* Updated stylesheet for DejaView landing page */

/* Reset and base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  

  
  /* Hero Section */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 0 6rem;
    gap: 6rem;
    min-height: 80vh;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
  }
  
  .hero p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.5;
    max-width: 90%;
  }
  
  .gradient-text {
    background: linear-gradient(135deg, #7C3AED, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  
  .btn-primary {
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    height: 80px;
    width: 280px;
  }
  
  .btn-secondary {
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    height: 60px;
    min-width: 200px;
    padding: 1rem 2rem;
  }
  
  .btn-primary {
    background: transparent;
    color: #000;
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.3),
      0 8px 32px rgba(0, 0, 0, 0.2);
    border: none;
    overflow: hidden;
    position: relative;
    padding: 0 !important;
    animation: subtle-pulse 3s ease-in-out infinite;
  }

  @keyframes subtle-pulse {
    0%, 100% { 
      box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.2);
    }
    50% { 
      box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.35),
        0 12px 40px rgba(0, 0, 0, 0.25);
    }
  }
  
  .btn-primary img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.3s ease;
    display: block;
  }
  
  .btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
      0 30px 80px rgba(0, 0, 0, 0.4),
      0 15px 50px rgba(0, 0, 0, 0.3);
    animation-play-state: paused;
  }
  
  .btn-primary:hover img {
    transform: scale(1.08);
  }
  
  .btn-secondary {
    background: rgba(124, 58, 237, 0.1);
    border: 2px solid rgba(124, 58, 237, 0.5);
    color: #fff;
    backdrop-filter: blur(10px);
  }
  
  .btn-secondary:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.8);
    transform: translateY(-2px);
  }
  
  .hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  /* Phone Mockup Styles */
  .phone-mockup {
    position: relative;
    width: 340px;
    height: 700px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 
      0 50px 100px rgba(0, 0, 0, 0.5),
      0 20px 40px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
  }

  .phone-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  }

  .phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #333, #555, #333);
    border-radius: 3px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
  }



  .phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  }

  .phone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 35px;
  }

  /* Problem Statement Section */
  .problem-statement {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.03), rgba(6, 182, 212, 0.03));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

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

  .problem-tagline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #7C3AED, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    line-height: 1.2;
  }

  .problem-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
  }

  .problem-text p {
    margin-bottom: 1.5rem;
  }

  .problem-text em {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
  }

  .problem-text strong {
    color: #fff;
    font-weight: 600;
  }

  .problem-text p:last-child {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    background: linear-gradient(135deg, #7C3AED, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }

  /* Feature Demo Styles */
  .feature-demo {
    padding: 8rem 0;
  }

  .demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .demo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .demo-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .demo-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
  }

  .demo-phone {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .demo-reverse .demo-phone {
    order: 1;
  }

  .demo-reverse .demo-text {
    order: 2;
  }
  
  /* Sections */
  section {
    padding: 6rem 0;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #7C3AED, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  /* Use Cases */
  .use-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .use-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .use-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }
  
  /* Features */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .feature {
    background: rgba(255, 255, 255, 0.04);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }
  
  .feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #7C3AED, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .feature p {
    color: rgba(255, 255, 255, 0.75);
  }
  
  /* CTA */
  .download-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 4rem 2rem;
    border-radius: 20px;
  }
  
  .download-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .download-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
  }
  
  /* Footer */
  .footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #7C3AED;
  }
  
  /* Responsive */
  @media (max-width: 1024px) {
    .hero {
      grid-template-columns: 1fr;
      gap: 4rem;
      text-align: center;
      padding: 4rem 0;
    }
    
    .hero h1 {
      font-size: 3.5rem;
    }
    
    .hero p {
      max-width: 100%;
    }
    
    .hero-buttons {
      align-items: center;
    }
    
    .btn-primary {
      height: 75px;
      width: 260px;
    }
    
    .phone-mockup {
      width: 280px;
      height: 580px;
      transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }
    
    .demo-content {
      grid-template-columns: 1fr;
      gap: 4rem;
      text-align: center;
    }

    /* Reset order on mobile - always show phone first, then text */
    .demo-content .demo-phone {
      order: 1;
    }

    .demo-content .demo-text {
      order: 2;
    }
    
    .demo-text h2 {
      font-size: 2.2rem;
    }
    
    .feature-demo {
      padding: 6rem 0;
    }

    .problem-statement {
      padding: 6rem 0;
    }

    .problem-tagline {
      font-size: 2.5rem;
    }

    .problem-text {
      font-size: 1.2rem;
    }

    .problem-text p:last-child {
      font-size: 1.3rem;
    }
  }

  @media (max-width: 768px) {
    .hero {
      padding: 3rem 0;
      gap: 3rem;
    }
    
    .hero h1 {
      font-size: 2.8rem;
    }
    
    .hero p {
      font-size: 1.2rem;
    }
    
    .phone-mockup {
      width: 360px;
      height: 750px;
    }
    
    .demo-content {
      padding: 0 1rem;
      gap: 3rem;
    }
    
    .demo-text h2 {
      font-size: 2rem;
    }
    
    .demo-text p {
      font-size: 1.1rem;
    }
    
    .feature-demo {
      padding: 4rem 0;
    }

    .problem-statement {
      padding: 4rem 0;
    }

    .problem-tagline {
      font-size: 2.2rem;
    }

    .problem-text {
      font-size: 1.1rem;
    }

    .problem-text p:last-child {
      font-size: 1.2rem;
    }
  }

  @media (max-width: 480px) {
    .hero h1 {
      font-size: 2.2rem;
    }
    
    .hero p {
      font-size: 1.1rem;
    }
    
    .phone-mockup {
      width: 300px;
      height: 630px;
    }
    
    .demo-text h2 {
      font-size: 1.8rem;
    }
    
    .demo-text p {
      font-size: 1rem;
    }
    
    .feature-demo {
      padding: 3rem 0;
    }

    .problem-statement {
      padding: 3rem 0;
    }

    .problem-tagline {
      font-size: 1.8rem;
    }

    .problem-text {
      font-size: 1rem;
    }

    .problem-text p:last-child {
      font-size: 1.1rem;
    }
    
    .btn-primary {
      height: 75px;
      width: 260px;
      justify-content: center;
    }
    
    .btn-primary img {
      width: 100% !important;
      height: 100% !important;
      object-fit: fill !important;
      display: block !important;
    }
  }