/* Guardián de la Conciencia - Styles */
/* CSS Variables */
:root {
  --bg-color: #1a1a1a;
  --bg-card: #242424;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --accent-color: #f2b90d; /* Amber/Yellow for high contrast */
  --accent-hover: #d2a10b;
  --accent-secondary: #00ff66; /* Neon green for sponsor/secondary accents */
  --border-color: #333333;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 600px; /* Mobile-first optimized width */
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent-color); }
.text-muted { color: var(--text-secondary); font-size: 0.875rem;}
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

/* Typography */
h1 { font-size: 2.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }

/* Buttons */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #000;
  box-shadow: 0 4px 14px rgba(242, 185, 13, 0.4);
}

.btn-primary:active {
  transform: scale(0.98);
  background-color: var(--accent-hover);
}

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

.btn-outline:active {
  background-color: var(--bg-card);
}

/* Base Sections */
section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-color);
}

/* Custom Modules */
.hero-section {
  padding-top: 5rem;
  padding-bottom: 3rem;
  text-align: center;
}

.hero-subheadline {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  padding: 2rem 0;
}

.metric-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.metric-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

/* Cards */
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}

.card:hover {
  border-color: var(--accent-color);
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Sponsor Cards */
.sponsor-card {
  background: linear-gradient(145deg, #1a2a1a, #111);
  border-left: 4px solid var(--accent-secondary);
}

.sponsor-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

/* Lists */
.benefits-list {
  list-style: none;
}

.benefits-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Newsletter Snippet style helpers */
.newsletter-placeholder {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.input-base {
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: #111;
  color: white;
  font-family: inherit;
  font-size: 1rem;
}

.input-base:focus {
  outline: none;
  border-color: var(--accent-color);
}

/* FAQ */
.faq-item {
  margin-bottom: 1.5rem;
}
.faq-question {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

/* Footer */
footer {
  padding: 3rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text-primary);
}
