/* Base Styles */
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #194D33;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  text-align: center;
  padding: 2em;
  max-width: 800px;
}

header h1 {
  font-size: 3em;
  margin-bottom: 0.2em;
}

.subtitle {
  font-size: 1.2em;
  margin-bottom: 2em;
  color: #444;
}

.buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
  margin-bottom: 2em;
}

.btn {
  background-color: #194D33;
  color: #fff;
  padding: 0.8em 1.5em;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: transform 0.2s, background-color 0.2s;
}

.btn:hover {
  background-color: #0f2c1b;
  transform: scale(1.05);
}

.btn.disabled {
  background-color: #aaa;
  pointer-events: none;
  cursor: default;
}

footer {
  font-size: 0.9em;
  color: #666;
  margin-top: 2rem;
}

.social-links {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.social-links a {
  color: #194D33;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.social-links a:hover {
  opacity: 0.7;
}

.social-links a:visited {
  color: #194D33;
}

/* Manager manifesto preview */
.manifesto-preview {
  margin-top: 1.5rem;
  text-align: left;
}
.manifesto-preview h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.manifesto-preview iframe {
  width: 100%;
  height: 480px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: block;
  margin-bottom: 0.75rem;
}

/* Responsive */
@media (min-width: 600px) {
  .buttons {
    grid-template-columns: 1fr 1fr;
  }
}