/* Keepr — minimal, modern, Apple-like */
:root {
  --bg: #F6F5F2;
  --primary: #6B8F8D;
  --text: #1F2933;
  --text-muted: #52606D;
  --transition: 0.2s ease;
}

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.site-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.site-logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  gap: 1.75rem;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.site-nav a:hover {
  color: var(--primary);
}

/* Main content */
main {
  flex: 1;
  padding: 3rem 1.5rem 4rem;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}

/* Hero section */
.hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.hero .subtext {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.cta-button {
  display: inline-block;
  padding: 0.875rem 1.5rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 12px;
  transition: opacity var(--transition), transform var(--transition);
}

.cta-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.cta-button.soon {
  background: var(--text-muted);
  cursor: not-allowed;
  pointer-events: none;
}

/* Legal / info pages */
.page-title {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.page-intro {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.section {
  margin-bottom: 2rem;
}

.section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.section p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
}

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

.section ul {
  margin: 0 0 0.75rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(31, 41, 51, 0.08);
}

.site-footer p {
  margin: 0.25rem 0;
}

.site-footer a {
  color: var(--primary);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
}

.footer-nav span {
  color: var(--text-muted);
  user-select: none;
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  transition: color var(--transition);
}

.back-link:hover {
  color: var(--primary);
}

/* FAQ placeholder */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(31, 41, 51, 0.08);
}

.faq-list li:first-child {
  padding-top: 0;
}

.faq-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.faq-list span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Support contact block */
.contact-block {
  background: rgba(107, 143, 141, 0.08);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.contact-block p {
  margin: 0;
  color: var(--text);
}

.contact-block a {
  color: var(--primary);
  font-weight: 500;
}

/* Responsive */
@media (min-width: 600px) {
  .site-header {
    padding: 1.5rem 2rem;
  }

  main {
    padding: 4rem 2rem 5rem;
  }

  .site-footer {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 400px) {
  .site-nav {
    gap: 1.25rem;
    font-size: 0.9rem;
  }
}
