/* Modern Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
  background-color: #0C0A12;
  color: #E2E1E6;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography & Links */
a {
  color: #03DAC6;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #6200EE;
}

/* Glassmorphism Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 16, 26, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(50, 42, 78, 0.5);
  padding: 1rem 2rem;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  background: #6200EE;
  padding: 0.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(98, 0, 238, 0.4);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: #A5A2B2;
  font-size: 0.95rem;
  font-weight: 500;
}

nav a:hover {
  color: #FFFFFF;
}

/* Hero Section */
.hero {
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(98, 0, 238, 0.15) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero h1 span {
  background: linear-gradient(135deg, #03DAC6 0%, #6200EE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: #A5A2B2;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

/* Download Grid */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.download-card {
  background: #181524;
  border: 1px solid #322A4E;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.download-card:hover {
  transform: translateY(-4px);
  border-color: #6200EE;
  box-shadow: 0 8px 24px rgba(98, 0, 238, 0.15);
}

.download-card svg {
  width: 48px;
  height: 48px;
  fill: #A5A2B2;
  margin-bottom: 1rem;
  transition: fill 0.2s ease;
}

.download-card:hover svg {
  fill: #03DAC6;
}

.download-card h3 {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.download-btn {
  margin-top: 1rem;
  background: #322A4E;
  color: #FFFFFF;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s ease;
  width: 100%;
  text-align: center;
}

.download-card:hover .download-btn {
  background: #6200EE;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

/* AEO FAQ Section */
.faq-section {
  padding: 4rem 0;
  border-top: 1px solid rgba(50, 42, 78, 0.5);
}

.faq-section h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 3rem;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #181524;
  border: 1px solid #322A4E;
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(98, 0, 238, 0.5);
}

.faq-item h3 {
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-item h3::before {
  content: 'Q:';
  color: #03DAC6;
  font-weight: 900;
}

.faq-item p {
  color: #A5A2B2;
  font-size: 0.98rem;
  margin-bottom: 1rem;
}

.faq-item ul, .faq-item ol {
  margin-left: 1.5rem;
  color: #A5A2B2;
  font-size: 0.98rem;
  margin-bottom: 1rem;
}

.faq-item li {
  margin-bottom: 0.5rem;
}

.faq-item code {
  background: #0C0A12;
  color: #03DAC6;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-family: monospace;
}

/* Footer */
footer {
  background: #0C0A12;
  border-top: 1px solid rgba(50, 42, 78, 0.5);
  padding: 3rem 2rem;
  text-align: center;
  color: #636074;
  font-size: 0.9rem;
}

footer p {
  margin-bottom: 1rem;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  nav ul {
    display: none;
  }
}
