/* Recura Website — Premium Dark Theme */
:root {
  --bg-dark: #0a0a0f;
  --bg-card: rgba(255, 255, 255, 0.03);
  --neon-green: #39ff14;
  --neon-cyan: #00ffff;
  --text-primary: #ffffff;
  --text-muted: #888888;
  --text-dim: #555555;
  --border: rgba(255, 255, 255, 0.1);
  --gradient-start: #0a0a0f;
  --gradient-mid: #0d1a1a;
  --gradient-end: #0a0f0a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Animated gradient background */
.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(57, 255, 20, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(0, 255, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(57, 255, 20, 0.03) 0%, transparent 70%),
    linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
  z-index: -1;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  color: var(--neon-cyan);
  letter-spacing: -1px;
}

.logo-small {
  font-size: 20px;
  font-weight: 800;
  color: var(--neon-cyan);
}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
}

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

/* Hero Section */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  background: rgba(57, 255, 20, 0.12);
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.highlight {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 40px;
}

/* Features */
.features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(57, 255, 20, 0.08);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--neon-green);
}

.feature .icon {
  font-size: 16px;
}

/* CTA Buttons */
.cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  min-width: 180px;
}

.btn.primary {
  background: var(--neon-green);
  color: #000;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(57, 255, 20, 0.3);
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.btn.secondary:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  margin-top: auto;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 13px;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--neon-cyan);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  color: var(--text-dim);
  font-size: 12px;
}

/* Legal Pages */
.legal-page {
  flex: 1;
  padding: 40px 24px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 32px;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.last-updated {
  color: var(--text-dim);
  font-size: 13px;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--neon-cyan);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-page p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.7;
}

.legal-page ul {
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-page li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
}

.legal-page a {
  color: var(--neon-cyan);
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-top: 40px;
}

.contact-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.contact-card p {
  margin-bottom: 8px;
}

/* Mobile Responsive */
@media (max-width: 640px) {
  header {
    padding: 20px;
  }
  
  .logo {
    font-size: 24px;
  }
  
  nav {
    gap: 16px;
  }
  
  .hero {
    padding: 40px 20px;
  }
  
  h1 {
    font-size: 28px;
    letter-spacing: -1px;
  }
  
  .subtitle {
    font-size: 16px;
  }
  
  .features {
    gap: 10px;
  }
  
  .feature {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .btn {
    width: 100%;
    padding: 16px 24px;
  }
  
  .cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
  
  .legal-page {
    padding: 24px 20px 60px;
  }
  
  .legal-page h1 {
    font-size: 26px;
  }
  
  .legal-page h2 {
    font-size: 18px;
    margin-top: 32px;
  }
}
