/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent-color: #4A90E2;
  --text-color: #1a1a1a;
  --bg-color: #ffffff;
  --border-color: #e0e0e0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Layout */
.page-content {
  padding: 2rem 1rem;
  min-height: calc(100vh - 200px);
}

.wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/* Homepage styles */
.homepage {
  text-align: center;
  padding: 3rem 0;
}

.app-icon-container {
  margin-bottom: 2rem;
}

.app-icon {
  width: 120px;
  height: 120px;
  border-radius: 26px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.app-title {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.app-tagline {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.app-description {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.app-description p {
  margin-bottom: 1.5rem;
}

.features {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.features h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.features ul {
  list-style: none;
  padding-left: 0;
}

.features li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.features li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 1.5rem;
  line-height: 1;
}

.legal-links {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.legal-links h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.legal-links p {
  margin: 0.5rem 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

p {
  margin-bottom: 1rem;
}

/* Links */
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

a:active {
  opacity: 0.5;
}

/* Page content styles */
.page-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.page-content h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.page-content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.page-content ul,
.page-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

.page-content p {
  margin-bottom: 1.25rem;
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  padding: 2rem 1rem;
  border-top: 1px solid var(--border-color);
  background-color: #fafafa;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer-nav {
  margin-bottom: 1rem;
}

.footer-nav a {
  color: var(--text-color);
  font-size: 0.9rem;
}

.footer-nav .separator {
  margin: 0 0.5rem;
  color: #999;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
  .app-title {
    font-size: 2rem;
  }

  .app-tagline {
    font-size: 1.1rem;
  }

  .app-description {
    font-size: 1rem;
  }

  .page-content {
    padding: 1.5rem 1rem;
  }

  .homepage {
    padding: 2rem 0;
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-nav .separator {
    display: none;
  }
}
