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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #f4f4fa 100%);
  color: #1e1b2e;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #2f2365 0%, #6d58b1 100%);
  color: #fff;
  padding: 6rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  width: 100%;
  justify-content: center;
}
.hero-logo {
  width: 160px;
  height: auto;
  animation: float 6s ease-in-out infinite;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.25rem;
  max-width: 700px;
  margin-bottom: 1.5rem;
}
.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #6d58b1;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}
.cta-button:hover {
  background-color: #59409c;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Navigation */
.site-nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  padding: 1rem 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  z-index: 10;
}
.site-nav a {
  color: #372875;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
.site-nav a:hover {
  color: #59409c;
}

/* Sections */
section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
}

.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: #372875;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.feature {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.feature:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.feature h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #4c3d84;
}
.feature p {
  color: #44425d;
}

.mission {
  text-align: center;
  max-width: 900px;
  margin: auto;
  color: #33304f;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.team-member {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.team-member h3 {
  margin: 0.5rem 0 0.25rem;
  font-size: 1.2rem;
  color: #372875;
}
.team-member p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
}
.team-member a {
  color: #6d58b1;
  text-decoration: none;
  font-size: 0.9rem;
}

/* Beta Form */
.beta-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}
.beta-form input {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.beta-form button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  background-color: #6d58b1;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.beta-form button:hover {
  background-color: #59409c;
}

.placeholder {
  text-align: center;
  color: #7c7a98;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #7c7a98;
}
