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

:root {
  --purple: #6741ff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "SF Pro Text", Helvetica, Arial, sans-serif;
  background: var(--purple);
}

/* NAVBAR */
.navbar {
  height: 64px;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: sticky;
  top: 0;
}

.logo {
  height: 44px;
}

.menu-button {
  font-size: 36px;
  color: white;
  background: none;
  border: none;
}

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: 64px;
  right: 20px;
  background: white;
  border-radius: 10px;
  display: none;
  flex-direction: column;
}

.dropdown a {
  padding: 14px 20px;
  color: #111;
  text-decoration: none;
}

/* MAIN WHITE SECTION */
.main {
  background: white;
  padding: 48px 20px;
}

/* HERO */
.hero {
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  color: var(--purple);
}

.hero h2 {
  font-size: 38px;
  margin-top: 6px;
}

.hero p {
  margin: 16px auto 24px;
  max-width: 360px;
  color: #555;
}

.appstore {
  height: 46px;
}

.mockup {
  margin-top: 36px;
  width: 100%;
  max-width: 420px;
}

/* FOOTER */
.footer {
  background: var(--purple);
  text-align: center;
  padding: 32px 16px;
}

.footer-logo {
  height: 36px;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.footer .copyright {
  margin-top: 10px;
  font-size: 14px;
  color: white;
}
.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}
