body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fff;
  color: #000;
}
header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 5vw 1rem 5vw;
  background: #fff;
}
.logo {
  height: 48px;
  max-width: 320px;
}
.lang-switcher {
  display: flex;
  justify-content: center;
  width: 100%;
}
.lang-switcher button {
  background: none;
  border: none;
  color: #222;
  font-size: 1rem;
  margin-left: 1rem;
  cursor: pointer;
  transition: color 0.2s;
}
.lang-switcher button.active, .lang-switcher button:hover {
  color: #FFC000;
}
.hero {
  text-align: center;
  padding: 4rem 2rem 2rem 2rem;
  background: #fff;
}
.hero-logo {
  width: 240px;
  max-width: 90vw;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0.5rem 0;
}
.hero p {
  font-size: 1.25rem;
  color: #222;
  margin-bottom: 2rem;
}
.pre-register {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.pre-register input[type="email"] {
  padding: 0.75rem 1rem;
  border: 1px solid #F5F5F5;
  border-radius: 24px;
  font-size: 1rem;
  min-width: 220px;
}
.pre-register button {
  background: #FFC000;
  color: #000;
  border: none;
  border-radius: 24px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.pre-register button:hover {
  background: #e6ac00;
}
small {
  color: #888;
}
.about, .benefits, .elevate {
  max-width: 700px;
  margin: 3rem auto 0 auto;
  padding: 0 2rem;
}
.about h2, .benefits h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.features li {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #F5F5F5;
  border-radius: 16px;
  padding: 0.75rem 1.25rem;
}
.benefit-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.card {
  background: #F5F5F5;
  border-radius: 16px;
  padding: 1.25rem 2rem;
  min-width: 160px;
  text-align: center;
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card .icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.elevate {
  text-align: center;
  margin-top: 2rem;
  color: #222;
}
.elevate a {
  color: #FFC000;
  text-decoration: none;
  font-weight: 600;
}
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  margin-top: 3rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.footer-links a {
  color: #FFC000;
  text-decoration: none;
  font-size: 1rem;
}
.coming-soon {
  display: inline-block;
  background: #FFC000;
  color: #000;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 16px;
  padding: 0.4em 1.2em;
  margin: 1rem 0 0.5rem 0;
  letter-spacing: 0.05em;
}
@media (max-width: 700px) {
  .features, .benefit-cards {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .about, .benefits, .elevate {
    padding: 0 1rem;
  }
  .hero {
    padding: 2rem 1rem 1rem 1rem;
  }
  .logo {
    height: 48px;
    max-width: 320px;
  }
  .hero-logo {
    width: 140px;
    max-width: 90vw;
    margin-bottom: 1.5rem;
  }
} 