:root {
  --bg: #fcefd5;
  --ink: #1a1a1a;
}

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

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Epilogue', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topnav {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  padding: 24px 28px;
  font-size: 15px;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.content {
  width: 100%;
  max-width: 480px;
}

h1 {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0.2px;
  margin-bottom: 40px;
}

p {
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 28px;
}

a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.download {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.app-store-badge {
  display: inline-block;
  height: 40px;
  transition: opacity 0.15s ease;
}

.app-store-badge:hover { opacity: 0.85; }

.app-store-badge img { height: 100%; width: auto; display: block; }

footer {
  text-align: center;
  padding: 28px 24px;
  font-size: 15px;
}

footer .dot { margin: 0 6px; }

.policy {
  line-height: 1.4;
  padding: 64px 24px;
  display: block;
  min-height: auto;
}

.policy .content {
  max-width: 640px;
  margin: 0 auto;
}

.policy h1 {
  font-size: 28px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 24px;
}

.policy h2 {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin: 36px 0 14px;
}

.policy .updated {
  font-size: 15px;
  opacity: 0.7;
  margin-bottom: 36px;
}

.policy ul {
  margin: 0 0 28px 22px;
  font-size: 18px;
  line-height: 1.4;
}

.policy li { margin-bottom: 10px; }

/* ---- features page ---- */
.features {
  display: block;
  padding: 44px 24px 24px;
}

.features-head {
  max-width: 640px;
  margin: 0 auto 8px;
  text-align: center;
}

.features-head h1 {
  margin-bottom: 14px;
}

.features-head p {
  font-size: 18px;
  opacity: 0.75;
  margin-bottom: 0;
}

.feature {
  max-width: 700px;
  margin: 0 auto;
  padding: 26px 0;
  display: flex;
  align-items: center;
  gap: 32px;
}

.feature.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
  max-width: 380px;
}

.feature-text h2 {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 0.2px;
}

.feature-text p {
  font-size: 18px;
  line-height: 1.45;
  margin-bottom: 0;
}

.feature.reverse .feature-text {
  margin-left: auto;
}

.feature-shot {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.feature-shot img {
  width: 210px;
  max-width: 60vw;
  height: auto;
  display: block;
  border-radius: 30px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  box-shadow: 0 18px 40px -18px rgba(74, 52, 38, 0.45);
}

.more {
  max-width: 760px;
  margin: 40px auto 0;
  padding-top: 56px;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.more h2 {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 26px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.2px;
  margin-bottom: 36px;
}

.more-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 48px;
}

.more-list li {
  font-size: 17px;
  line-height: 1.4;
}

.more-list strong {
  font-weight: 500;
}

.features-foot {
  max-width: 640px;
  margin: 56px auto 0;
  text-align: center;
}

.features-foot p { margin-bottom: 0; }

@media (max-width: 720px) {
  .feature,
  .feature.reverse {
    flex-direction: column;
    text-align: center;
    gap: 18px;
    padding: 28px 0;
  }
  .feature-text,
  .feature.reverse .feature-text {
    margin-left: auto;
    margin-right: auto;
    max-width: 420px;
  }
  .more-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 25px; }
  p { font-size: 17px; }
  .policy ul { font-size: 17px; }
  .feature-text h2 { font-size: 23px; }
}
