/* Base Styles & Variables */
:root {
  --primary-color: #FF4E50;
  --secondary-color: #F9D423;
  --dark-color: #222;
  --light-color: #fff;
  --bg-color: #1a1a1a;
  --text-color: #e0e0e0;
  --accent-color: #FF4E50;
  --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  --border-radius: 10px;
  --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}

ul {
  list-style-type: none;
}

/* Utility Classes */
.highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.domain {
  color: var(--secondary-color);
}

/* Header & Navigation */
header {
  background-color: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(5px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  margin-right: 1rem;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

nav ul {
  display: flex;
  gap: 2rem;
}

nav ul li a {
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--gradient);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 8rem 2rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 85vh;
}

.hero-content {
  max-width: 500px;
}

.hero-content h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.hero-graphic {
  position: relative;
}

.cta-button {
  display: inline-block;
  background: var(--gradient);
  color: var(--light-color);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* AI Technology Section */
.ai-tech {
  padding: 5rem 2rem;
  background-color: #222;
  position: relative;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: 2.5rem;
  display: inline-block;
}

.tech-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.tech-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--border-radius);
  flex: 1 1 300px;
  max-width: 350px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-10px);
}

.tech-icon {
  margin-bottom: 1.5rem;
}

/* Features Section */
.features {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.feature {
  display: flex;
  gap: 1.5rem;
}

.feature-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.feature-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Generate Section */
.generate {
  padding: 5rem 2rem;
  background: #222;
  display: flex;
  justify-content: center;
}

.generate-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
  max-width: 600px;
  box-shadow: var(--shadow);
}

.generate-card h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.generate-card p {
  margin-bottom: 2rem;
}

.benefits {
  text-align: left;
  max-width: 350px;
  margin: 0 auto 2rem;
}

.benefits li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

/* Footer */
footer {
  background-color: #151515;
  padding: 4rem 2rem 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 3rem;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.footer-name {
  font-weight: 700;
  font-size: 1.2rem;
}

.tagline {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-column h4 {
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient);
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  opacity: 0.7;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  opacity: 1;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    padding-top: 6rem;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .features-list {
    grid-template-columns: 1fr;
  }
  
  .tech-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .tech-card {
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-links {
    width: 100%;
    justify-content: center;
  }
  
  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 70%;
    height: calc(100vh - 70px);
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    transition: 0.5s;
    padding: 2rem;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .section-heading h2 {
    font-size: 2rem;
  }
  
  .feature {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  
  .navbar {
    padding: 0 1rem;
  }
  
  .logo h1 {
    font-size: 1.2rem;
  }
  
  .hero {
    padding: 7rem 1rem 3rem;
  }
  
  .hero-content h2 {
    font-size: 1.8rem;
  }
  
  .hero-graphic svg {
    width: 100%;
    height: auto;
  }
  
  .tech-card {
    padding: 1.5rem;
  }
  
  .generate-card {
    padding: 2rem 1.5rem;
  }
}
