:root {
  --bg: #939393;
  --ink: #f4f1ec;
  --muted: rgba(244, 241, 236, 0.75);
  --accent: #f2f1ed;
  --accent-ink: #2b2b2b;
  --border: rgba(244, 241, 236, 0.4);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sen", "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px 40px;
}

main {
  width: min(720px, 94vw);
}

.wip-ribbon {
  position: fixed;
  top: 18px;
  left: -20vw;
  width: 140vw;
  padding: 10px 0;
  background: var(--accent);
  color: var(--accent-ink);
  text-align: center;
  font-weight: 700;
  font-size: clamp(0.75rem, 1.6vw, 0.95rem);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  white-space: nowrap;
  border-top: 1px solid rgba(43, 43, 43, 0.2);
  border-bottom: 1px solid rgba(43, 43, 43, 0.2);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transform: rotate(-4deg);
  z-index: 3;
  pointer-events: none;
}

.landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.app-icon {
  width: 92px;
  height: 92px;
  border-radius: 20px;
  background: var(--accent);
}

h1 {
  margin: 0;
  font-size: clamp(2.1rem, 3.5vw, 2.8rem);
  letter-spacing: 0.02em;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: transparent;
}

.button.primary {
  background: var(--accent);
  border-color: transparent;
  color: var(--accent-ink);
}

.button.store.is-placeholder {
  opacity: 0.7;
}

.button.store.is-placeholder span {
  color: var(--ink);
}

.store-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer {
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.footer a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.footer .dot {
  opacity: 0.6;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.page p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.privacy-content hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 16px 0;
}

@media (max-width: 560px) {
  .wip-ribbon {
    top: 10px;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
  }

  .button {
    width: 100%;
    justify-content: center;
  }

  .footer {
    flex-direction: column;
  }
}
