:root {
  --primary: #00d2ff;
  --secondary: #ff9d00;
  --accent: #9d00ff;
  --bg-dark: #0a0a0c;
  --bg-card: rgba(255, 255, 255, 0.05);
  --text-main: #ffffff;
  --text-dim: #a0a0a0;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
header {
  padding: 1.5rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  text-decoration: none;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--secondary);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at 50% 50%, rgba(157, 0, 255, 0.1) 0%, rgba(10, 10, 12, 1) 70%);
  padding-top: 80px;
}

.hero-content h1 {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 1.5rem;
  background: linear-gradient(to bottom, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 210, 255, 0.5);
}

/* Agents Section */
.agents {
  padding: 8rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.agent-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.agent-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.agent-img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  aspect-ratio: 1;
  object-fit: cover;
  border: 4px solid var(--glass-border);
}

.agent-info h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.role-badge {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  color: var(--text-dim);
}

.agent-info p {
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.agent-features {
  list-style: none;
  margin-bottom: 2rem;
}

.agent-features li {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.agent-features li::before {
  content: '→';
  color: var(--primary);
}

.btn-outline {
  display: block;
  text-align: center;
  padding: 0.8rem;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Footer */
footer {
  padding: 4rem 0;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  color: var(--text-dim);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content {
  animation: fadeIn 1s ease-out;
}

/* Nova special accent */
.nova-card {
  border-color: rgba(16, 185, 129, 0.3);
}

.nova-card:hover {
  border-color: #10b981;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.nova-card h3 {
  color: #10b981;
}

.nova-btn:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: #10b981;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #111;
  border: 1px solid var(--glass-border);
  padding: 3rem;
  border-radius: 24px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-content h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.modal-content p {
  color: var(--text-dim);
  margin-bottom: 2rem;
}

.close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-dim);
}

#leadForm input {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
}

#leadForm input:focus {
  outline: none;
  border-color: var(--primary);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}
