@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

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

html {
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #0a0a0a;
  color: #fff;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  line-height: 1.5;
}

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

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

.container {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container--narrow {
  max-width: 48rem;
}

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-nav__inner {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.site-nav__inner--start {
  justify-content: flex-start;
}

.site-nav__link {
  font-size: 0.75rem;
  color: #6b7280;
  transition: color 0.15s;
}

.site-nav__link--back {
  font-size: 0.875rem;
}

.site-nav__link:hover {
  color: #d1d5db;
}

.site-nav__link--back:hover {
  color: #fff;
}

/* Hero */
.hero {
  padding-top: 5rem;
  padding-bottom: 4rem;
  text-align: center;
}

.hero__icon {
  width: 7rem;
  height: 7rem;
  margin: 0 auto 1.5rem;
  border-radius: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: #d1d5db;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.badge svg {
  width: 0.75rem;
  height: 0.75rem;
}

.hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.hero__desc {
  font-size: 1.125rem;
  color: #9ca3af;
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.625;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn-app-store {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: #000;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  transition: background 0.15s;
}

.btn-app-store:hover {
  background: #e5e7eb;
}

.btn-app-store svg {
  width: 1rem;
  height: 1rem;
}

.pill-muted {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
}

/* Sections */
.section {
  padding-bottom: 4rem;
}

.section__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1.5rem;
}

/* Screenshots */
.screenshots {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.screenshots::-webkit-scrollbar {
  display: none;
}

.screenshots img {
  height: 20rem;
  width: auto;
  border-radius: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card */
.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
}

.card--center {
  text-align: center;
}

.card__emoji {
  font-size: 1.875rem;
  margin: 0 0 0.75rem;
}

.card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.card__text {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.625;
  max-width: 28rem;
  margin: 0 auto;
}

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step__num {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step__text {
  font-size: 0.875rem;
  color: #d1d5db;
  line-height: 1.625;
  margin: 0;
  padding-top: 0.125rem;
}

/* Features grid */
.features-grid {
  display: grid;
  gap: 1rem;
}

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

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
}

.feature-card__emoji {
  font-size: 1.875rem;
  flex-shrink: 0;
}

.feature-card__title {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.feature-card__desc {
  font-size: 0.75rem;
  color: #9ca3af;
  line-height: 1.625;
  margin: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: #6b7280;
}

.site-footer a {
  transition: color 0.15s;
}

.site-footer a:hover {
  color: #d1d5db;
}

.site-footer__row {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.site-footer__row + .site-footer__row {
  margin-top: 0.5rem;
}

.site-footer svg {
  width: 0.75rem;
  height: 0.75rem;
}

/* Privacy page */
.privacy-header {
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
}

.privacy-header__title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.privacy-header__title-row svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #9ca3af;
}

.privacy-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.privacy-header__meta {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

.privacy-header__meta + .privacy-header__meta {
  margin-top: 0;
}

.privacy-header__meta.mt {
  margin-top: 0.25rem;
}

.privacy-body {
  padding-bottom: 5rem;
}

.policy-section {
  margin-bottom: 2rem;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
}

.policy-section > p {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.625;
  margin: 0;
  white-space: pre-line;
}

.policy-subsection {
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-subsection h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #d1d5db;
  margin: 0 0 0.5rem;
}

.policy-subsection p {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.625;
  margin: 0;
  white-space: pre-line;
}

.policy-section a {
  color: #9ca3af;
  text-decoration: underline;
}

.policy-section a:hover {
  color: #d1d5db;
}

/* 404 */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.page-404 h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.page-404 p {
  color: #9ca3af;
  margin: 0 0 1.5rem;
}

.page-404 a {
  color: #d1d5db;
  text-decoration: underline;
}
