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

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  color: #1a1a1a;
  background: #fafafa;
  line-height: 1.6;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
}

.header-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo:hover {
  text-decoration: none;
}

.logo-icon {
  font-size: 1.4rem;
}

nav a {
  font-size: 0.875rem;
  color: #666;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.hero {
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero p {
  color: #555;
  font-size: 1.05rem;
}

.tools-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tool-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.15s;
}

.tool-card:hover {
  border-color: #ccc;
}

.tool-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  flex-shrink: 0;
}

.tool-info {
  flex: 1;
}

.tool-info h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.tool-info p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-size: 0.75rem;
  background: #f0f0f0;
  color: #555;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.tag-free {
  background: #dcfce7;
  color: #166534;
}

footer {
  border-top: 1px solid #e5e5e5;
  background: #fff;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #999;
}

.footer-inner a {
  color: #999;
}

.footer-inner a:hover {
  color: #555;
}

/* Privacy page */
.prose h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.prose .last-updated {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 2rem;
}

.prose h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.prose p,
.prose ul {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.prose ul {
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.25rem;
}

@media (max-width: 480px) {
  .header-inner,
  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.4rem;
  }

  .tool-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .tool-tags {
    justify-content: center;
  }
}

