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

body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.5;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1000;
  /* text-align: center; */
  padding: 1rem 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

header img {
  max-width: 50px;
  margin: 0 auto;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

a {
  text-decoration: none;
  color: #016bd9;
  transition: color 0.2s;
}

section {
  max-width: 960px;
  margin: 8rem auto 3rem auto; /* push content down */
  padding: 0 1rem;
  text-align: center;
}

.logo-text {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.5em;
}

.feature {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  margin: 3rem 0;
}
.feature.reverse {
  flex-direction: row-reverse;
}
.feature-text {
  flex: 1;
  min-width: 260px;
  text-align: left;
}
.feature-text h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}
.feature-img {
  flex: 1;
  min-width: 260px;
}
.feature-img img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.store-buttons img {
  height: 40px;
  margin: 0.5rem;
}

.waitlist {
  background: #f9f9f9;
  padding: 3rem 1rem;
  text-align: center;
}

.waitlist form {
  max-width: 400px;
  margin: 0 auto;
}

input,
button {
  display: block;
  margin: 1rem 0;
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
}

button {
  background: black;
  color: white;
  border: none;
  cursor: pointer;
}

button:disabled {
  background: #6c757d;
  cursor: not-allowed;
}

footer {
  background: white;
  padding: 3rem 1.5rem;
  border-top: 1px solid #eee;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2em;
}

.footer-logo {
  font-size: 1.5rem;
  flex: 1 1 100%;
  margin-bottom: 2rem;
  gap: 0.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  flex: 1 1 100%;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  text-decoration: none;
  color: #016bd9;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #000;
}

@media (min-width: 768px) {
  .footer-logo {
    flex: 1 1 25%;
  }

  .footer-links {
    flex: 1 1 75%;
    justify-content: flex-end;
  }

  .footer-col {
    min-width: 120px;
  }
}
