/* ===== AITaskFlo Funding Page Styling ===== */
body {
  font-family: 'Inter', Arial, sans-serif;
  background: #0a0f1c;
  color: #e6eefc;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 100px 20px 60px;
  background: linear-gradient(135deg, #0a1f3c, #0a0f1c);
  color: #fff;
  border-bottom: 2px solid #1c3f87;
  box-shadow: 0 0 20px rgba(0, 153, 255, 0.4);
}

h1 {
  font-size: 2.5em;
  color: #64b5ff;
  margin-bottom: 10px;
}

p {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 20px;
}

.cta-button {
  background: #1c3f87;
  color: #fff;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 153, 255, 0.4);
}

.cta-button:hover {
  background: #64b5ff;
  color: #0a0f1c;
  transform: scale(1.05);
}

section {
  padding: 60px 20px;
  text-align: center;
}

#metrics ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

#metrics li {
  background: rgba(28, 63, 135, 0.2);
  border: 1px solid rgba(100, 181, 255, 0.3);
  padding: 20px 30px;
  border-radius: 12px;
  min-width: 160px;
  font-size: 1.1em;
  box-shadow: 0 0 15px rgba(0, 153, 255, 0.3);
}

form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto;
}

input, textarea, button {
  margin: 10px 0;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1em;
}

input, textarea {
  background: #101a2e;
  color: #e6eefc;
}

button {
  background: #1c3f87;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 153, 255, 0.4);
}

button:hover {
  background: #64b5ff;
  color: #0a0f1c;
  transform: scale(1.03);
}

footer {
  background: #0a0f1c;
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(100, 181, 255, 0.2);
  color: #9ab4d6;
  font-size: 0.9em;
}
