/* Global Styles */
body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #0c0c0c;
  color: #f5f5f7;
  text-align: center;
  padding: 0;
}

a {
  text-decoration: none;
  color: #31d095;
}

header {
  padding: 60px 20px 40px;
  background-color: #0c0c0c;
}

.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

h1 {
  font-size: 2.5rem;
  margin: 0;
  color: #f5f5f7;
}

.subhead {
  font-size: 1.2rem;
  color: #31d095;
  margin-top: 4px;
}

.tagline {
  font-size: 1.1rem;
  margin-top: 10px;
  color: #cccccc;
}

.cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.cta {
  background-color: #004c99;
  color: #f5f5f7;
  padding: 10px 20px;
  font-size: 0.95rem; 
  margin: 0 10px;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
  text-align: center;
}

.cta:hover {
  background-color: #006dcc;
}

section {
  padding: 30px 20px;
}

.about, .mvp-preview {
  max-width: 700px;
  margin: 0 auto;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #d4d4d4, #ffffff, #c0c0c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 6px rgba(255,255,255,0.1); /* soft highlight */
}


ul {
  list-style-type: none;
  padding: 0;
  text-align: center;           /* ← Key Fix */
  max-width: 600px;             /* Slightly wider for balance */
  margin: 0 auto;
}

ul li {
  margin-bottom: 14px;
  line-height: 1.6;
  font-size: 1.05rem;
}

footer {
  background-color: #111;
  padding: 20px;
  margin-top: 40px;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.mini-logo {
  width: 24px;
  height: 24px;
}

.footer-text {
  font-size: 0.9rem;
  color: #999;
}

/* ========================
   Responsive Styles (Mobile)
   ======================== */
@media (max-width: 600px) {
  .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta {
    width: 80%;
    margin: 0 auto;
  }
}
