:root {
  --accent: #ff9933;
  --text: #000000;
  --subtext: #4b5563;
  --footer-text: #6b7280;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 7rem;
  position: relative;
}

@media (min-width: 1024px) {
  .page {
    flex-direction: row;
    padding: 2rem 4rem 7rem;
  }
}

.hero {
  width: 100%;
  max-width: 640px;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero {
    text-align: left;
    margin-right: 4rem;
  }
}

.headline {
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.75rem;
}

@media (min-width: 640px) {
  .headline {
    font-size: 3.5rem;
  }
}

@media (min-width: 768px) {
  .headline {
    font-size: 4.5rem;
  }
}

.accent {
  color: var(--accent);
  font-weight: 700;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--subtext);
  margin: 0 0 3rem;
}

@media (min-width: 768px) {
  .subtitle {
    font-size: 1.75rem;
  }
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .store-badges {
    justify-content: flex-start;
  }
}

.badge-link {
  display: inline-block;
  transition: opacity 0.15s ease;
}

.badge-link:hover {
  opacity: 0.9;
}

.badge {
  width: 200px;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .badge {
    width: 230px;
  }
}

.demo {
  width: 100%;
  max-width: 350px;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .demo {
    margin-top: 0;
  }
}

.demo-video {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 1rem;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.footer {
  position: absolute;
  bottom: 1rem;
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  color: var(--footer-text);
  padding: 0 1rem;
}

.footer-links {
  margin-bottom: 0.5rem;
}

.footer a {
  color: inherit;
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer a:hover {
  color: #374151;
}

.dot {
  margin: 0 0.15rem;
}
