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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  color: #e0e0e0;
  background: #0f1117;
  min-height: 100vh;
  line-height: 1.6;
}

/* Landing page hero layout */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.hero .tagline {
  font-size: 1.15rem;
  color: #9ca3af;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  background: #3b82f6;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.hero-policy-link {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.hero-policy-link a {
  color: #9ec5ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-policy-link a:hover {
  color: #c9deff;
}

/* Shield icon */
.shield-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  fill: #3b82f6;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  color: #6b7280;
}

footer a {
  color: #9ca3af;
  text-decoration: none;
}

footer a:hover {
  color: #e0e0e0;
}

/* Privacy policy page */
.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.page h1 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.page .last-updated {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.page h2 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.page p,
.page ul {
  color: #d1d5db;
  margin-bottom: 1rem;
}

.page ul {
  padding-left: 1.5rem;
}

.page a {
  color: #60a5fa;
  text-decoration: none;
}

.page a:hover {
  text-decoration: underline;
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
}

.back-link:hover {
  color: #e0e0e0;
}
