/* === assets/style.css === */

:root {
  --bg: #0b0c10;
  --fg: #e6e6e6;
  --accent: #6c63ff;
  --accent-light: #a393ff;
  --secondary: #26c6da;
  --font-title: 'Orbitron', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: radial-gradient(circle at top, #13131a, var(--bg));
  color: var(--fg);
  line-height: 1.6;
}

.hero {
  text-align: center;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(to bottom right, #141424, #0b0c10);
  box-shadow: inset 0 -1px 0 var(--accent-light);
}

.hero h1 {
  font-family: var(--font-title);
  color: var(--accent);
  font-size: 3rem;
  margin: 0;
}

.subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--accent-light);
  margin: 0.5rem 0 1.5rem;
}

.tagline {
  font-style: italic;
  color: var(--secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn {
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: var(--accent-light);
}

.btn.secondary {
  background: var(--secondary);
}

.btn.secondary:hover {
  opacity: 0.8;
}

.btn.ai {
  background: transparent;
  border: 1px solid var(--accent-light);
  color: var(--accent-light);
}

.btn.ai:hover {
  background: rgba(163, 147, 255, 0.14);
}

.ai-reference {
  color: #b7b7c8;
  font-size: 0.92rem;
  margin: 1rem auto 0;
  text-align: center;
}

.ai-reference a {
  color: var(--secondary);
}

main {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 2rem;
}

section h3 {
  color: var(--accent-light);
  font-family: var(--font-title);
}

p {
  text-align: justify;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #888;
  border-top: 1px solid #222;
  background: #0a0a12;
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&family=Orbitron:wght@400;700&display=swap');
