:root {
  --color-bg: #ffffff;
  --color-text: #2d2d2d;
  --color-accent: #dfc784;
  --color-accent-muted: rgba(223, 199, 132, 0.25);
  --color-border: rgba(45, 45, 45, 0.1);
  --color-muted: rgba(45, 45, 45, 0.45);
  --font-family: "Plus Jakarta Sans", sans-serif;
  --max-width: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 1.75rem;
  width: auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-status {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.nav-status-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--color-accent);
}

/* Hero */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 1.5rem;
  min-height: calc(100vh - 4rem - 4.5rem);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 4rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--color-accent-muted);
  color: var(--color-text);
  border: 1px solid var(--color-accent);
}

.badge-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: var(--color-accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.hero-title {
  margin: 0 0 1.25rem;
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: 700;
}

.hero-title-accent {
  color: var(--color-accent);
}

.hero-lead {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  line-height: 1.625;
  max-width: 32rem;
}

.store-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.app-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.store-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.store-badge {
  transition: opacity 0.2s;
}

.store-badge:hover {
  opacity: 0.8;
}

.store-badge img {
  height: 3.5rem;
  width: auto;
}

.hero-note {
  margin: 0;
  font-size: 0.875rem;
}

.hero-visual {
  display: none;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-phone {
  width: 27.5rem;
  max-width: 100%;
  max-height: calc(100vh - 8.5rem);
  object-fit: contain;
  object-position: bottom;
}

/* Footer */
.footer {
  border-top: 1px solid var(--color-border);
  padding: 1.5rem;
  background: var(--color-bg);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-logo {
  height: 1.25rem;
  width: auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.footer-link {
  font-size: 0.875rem;
  transition: opacity 0.2s;
}

.footer-link:hover {
  opacity: 0.7;
}

.footer-copy {
  margin: 0;
  font-size: 0.75rem;
  color: var(--color-muted);
}

@media (min-width: 640px) {
  .nav-status {
    display: inline-flex;
  }

  .hero-title {
    font-size: 3rem;
  }

  .store-row {
    flex-direction: row;
    align-items: center;
  }

  .store-badges {
    flex-direction: row;
  }

  .footer-inner {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: 3.25rem;
  }

  .hero-visual {
    display: flex;
  }
}
