/* Base Styles */
:root {
  --primary: #1E88E5;
  --secondary: #D81B60;
  --accent: #7C4DFF;
  --dark: #121212;
  --darker: #090909;
  --light: #ffffff;
  --gray: #888888;
  --light-gray: #dddddd;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  --border-radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  color: var(--light);
  background-color: var(--darker);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style-type: none;
}

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

.section-title {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--gray);
  font-size: 1.1rem;
}

.highlight {
  color: var(--primary);
  position: relative;
  z-index: 1;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient);
  color: var(--light);
  box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 136, 229, 0.6);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--light);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--light);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(9, 9, 9, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.domain {
  opacity: 0.7;
  font-weight: 400;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-menu li a {
  color: var(--light);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

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

.nav-menu li a:hover::after {
  width: 100%;
}

#nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: var(--light);
  height: 2px;
  width: 25px;
  border-radius: 2px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
}

.nav-toggle-label span::before {
  bottom: 8px;
}

.nav-toggle-label span::after {
  top: 8px;
}

/* Hero Section */
.hero {
  padding: 160px 0 80px;
  background: linear-gradient(to bottom right, var(--dark), var(--darker));
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.1;
  top: -200px;
  right: -100px;
}

.hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
  opacity: 0.1;
  bottom: -200px;
  left: -100px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.lead {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image svg {
  max-width: 100%;
  height: auto;
}

/* Generator Section */
.generator {
  padding: 100px 0;
  background-color: var(--dark);
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
  border-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--light);
}

.feature-card p {
  color: var(--gray);
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: var(--darker);
  position: relative;
  overflow: hidden;
}

.tech-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.tech-feature {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(30, 136, 229, 0.05), rgba(216, 27, 96, 0.05));
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-feature h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.tech-feature p {
  color: var(--gray);
}

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

.showcase svg {
  max-width: 100%;
  height: auto;
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background-color: var(--dark);
}

.steps {
  max-width: 800px;
  margin: 0 auto 5rem;
}

.step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 50px;
  bottom: -40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), transparent);
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light);
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--gray);
}

.cta-block {
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--border-radius);
  background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(216, 27, 96, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-block h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-block p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--gray);
}

/* Footer */
footer {
  background-color: var(--darker);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}

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

.footer-logo span {
  font-size: 1.2rem;
  font-weight: 600;
}

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

.footer-nav-column h4 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

.footer-nav-column ul li a {
  color: var(--gray);
}

.footer-nav-column ul li a:hover {
  color: var(--light);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.copyright {
  color: #444;
  font-size: 0.8rem;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .nav-toggle-label {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: rgba(9, 9, 9, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  #nav-toggle:checked ~ .nav-menu {
    max-height: 300px;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-menu li a {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .nav-menu li a::after {
    display: none;
  }
  
  .tech-features {
    grid-template-columns: 1fr;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .step {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .step-number {
    margin: 0 auto;
  }
  
  .step:not(:last-child)::before {
    display: none;
  }
  
  .feature-icon {
    margin-left: auto;
    margin-right: auto;
  }
  
  .feature-card {
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .cta-block h2 {
    font-size: 1.8rem;
  }
}
