/* Eupresa Theme - Solo Entrepreneur + AI Agents */
:root {
  --primary: #6366f1;      /* Indigo */
  --secondary: #8b5cf6;    /* Purple */
  --accent: #10b981;       /* Emerald */
  --dark: #1e1b4b;         /* Deep indigo */
  --light: #f5f3ff;        /* Light purple */
  --text: #334155;
  --muted: #64748b;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: #fafafa;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

.logo span { color: var(--secondary); }

nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 32px;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover { color: var(--primary); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #312e81 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero h1 .highlight {
  background: linear-gradient(90deg, var(--accent), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

/* Stats */
.stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Sections */
section {
  padding: 80px 0;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--dark);
}

section .subtitle {
  color: var(--muted);
  font-size: 1.125rem;
  margin-bottom: 48px;
}

/* Agent Cards */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.agent-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.agent-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
}

.agent-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.agent-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.agent-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Features */
.features {
  background: var(--light);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .feature-grid { grid-template-columns: 1fr; }
  .stats { flex-direction: column; gap: 24px; }
  .hero h1 { font-size: 2rem; }
  nav { display: none; }
}

.feature {
  text-align: center;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Testimonial */
.testimonial {
  background: white;
  border-radius: 16px;
  padding: 48px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.testimonial blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 24px;
}

.testimonial cite {
  font-style: normal;
  color: var(--muted);
}

/* CTA Section */
.cta-section {
  background: var(--dark);
  color: white;
  text-align: center;
}

.cta-section h2 {
  color: white;
}

/* Content */
main.content {
  padding: 48px 0;
  min-height: 60vh;
}

main.content h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: var(--dark);
}

main.content h2 {
  font-size: 1.75rem;
  margin: 48px 0 16px;
  color: var(--dark);
}

main.content p {
  margin-bottom: 16px;
}

main.content ul, main.content ol {
  margin: 16px 0 16px 24px;
}

main.content li {
  margin-bottom: 8px;
}

main.content a {
  color: var(--primary);
}

/* Footer */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0;
  text-align: center;
}

footer a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}

footer .links {
  margin-bottom: 24px;
}

footer .links a {
  margin: 0 16px;
}
