/*
Theme Name: Aspyn AI Hero
Theme URI: https://aspyn.ai
Author: Aspyn Team
Author URI: https://aspyn.ai
Description: Homepage hero section for aspyn AI featuring gradient branding and "Evolve from agents to operators" messaging.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aspyn-ai-hero
Tags: ai, saas, gradient, hero, landing
*/

/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  color: #111827;
  background-color: #f5f1e8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

/* ========================================
   GRADIENT TEXT UTILITY
   ======================================== */

.gradient-text {
  background: linear-gradient(to right, #EC4899, #F97316, #FF5A4E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FDF2F8 0%, #FFF7ED 50%, #FEF2F2 100%);
  padding: 80px 48px;
  min-height: 100vh;
}

/* Background Orbs */
.hero-orb-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, rgba(249, 115, 22, 0.2) 100%);
  filter: blur(120px);
  pointer-events: none;
}

.hero-orb-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 384px;
  height: 384px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, rgba(239, 68, 68, 0.2) 100%);
  filter: blur(120px);
  pointer-events: none;
}

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

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

.site-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
  position: relative;
  z-index: 10;
}

.site-logo {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.logo-text {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(to right, #EC4899, #F97316, #FF5A4E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-ai {
  font-size: 18px;
  font-weight: 300;
  color: #FF5A4E;
  margin-top: 2px;
  letter-spacing: 0.05em;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.menu-link {
  color: #4B5563;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.menu-link:hover {
  color: #111827;
}

.btn-primary {
  padding: 10px 24px;
  background: linear-gradient(to right, #EC4899, #F97316);
  color: white;
  font-weight: 600;
  border-radius: 9999px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
  transform: translateY(-2px);
}

/* ========================================
   HERO GRID
   ======================================== */

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ========================================
   HERO HEADLINE
   ======================================== */

.hero-headline {
  font-size: 84px;
  font-weight: 700;
  line-height: 1.1;
  color: #111827;
  margin: 0;
}

/* ========================================
   HERO BUTTONS
   ======================================== */

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-hero-primary {
  padding: 16px 32px;
  background: linear-gradient(to right, #EC4899, #F97316);
  color: white;
  font-weight: 700;
  font-size: 18px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  box-shadow: 0 20px 40px rgba(236, 72, 153, 0.3);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  padding: 16px 32px;
  background: white;
  color: #4B5563;
  font-weight: 700;
  font-size: 18px;
  border-radius: 16px;
  border: 2px solid #E5E7EB;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  border-color: #D1D5DB;
}

/* ========================================
   KEY FEATURES
   ======================================== */

.hero-features {
  display: flex;
  gap: 32px;
  padding-top: 16px;
}

.hero-feature {
  flex: 1;
}

.feature-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  background: linear-gradient(to right, #EC4899, #F97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-description {
  font-size: 14px;
  color: #62748e;
  line-height: 1.5;
}

/* ========================================
   HERO IMAGE
   ======================================== */

.hero-image {
  position: relative;
}

.hero-dashboard {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-dashboard img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image-glow {
  position: absolute;
  inset: -16px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(249, 115, 22, 0.3));
  border-radius: 32px;
  filter: blur(40px);
  z-index: -1;
}

/* ========================================
   TRUSTED BY SECTION
   ======================================== */

.trusted-section {
  margin-top: 96px;
  padding-top: 48px;
  border-top: 1px solid rgba(209, 213, 219, 0.4);
}

.trusted-title {
  text-align: center;
  margin-bottom: 40px;
}

.trusted-title h3 {
  font-size: 14px;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.trusted-logo {
  height: 40px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity 0.3s ease;
}

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

/* ========================================
   PROBLEM STATEMENT
   ======================================== */

.problem-section {
  margin-top: 128px;
  text-align: center;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.problem-headline {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 24px;
}

.problem-text {
  font-size: 24px;
  color: #4B5563;
  line-height: 1.5;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  .hero-headline {
    font-size: 60px;
  }
  
  .hero-grid {
    gap: 48px;
  }
  
  .problem-headline {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 64px 24px;
  }
  
  .site-menu {
    gap: 16px;
  }
  
  .menu-link {
    display: none;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hero-headline {
    font-size: 48px;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
  }
  
  .trusted-logos {
    gap: 32px;
  }
  
  .problem-headline {
    font-size: 36px;
  }
  
  .problem-text {
    font-size: 18px;
  }
}