@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.static-page {
  min-height: 100vh;
  background: #fff;
}

.static-nav {
  border-bottom: 1px solid #dbeafe;
}

.static-nav-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 32px;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-text {
  font-size: 18px;
  font-weight: 700;
  color: #1e3a5f;
  letter-spacing: -0.3px;
}

.brand-accent {
  color: #2b7de9;
}

.static-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 32px 96px;
}

.static-content h1 {
  font-size: 32px;
  font-weight: 700;
  color: #1e3a5f;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.static-date {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 40px;
}

.static-content section {
  margin-bottom: 32px;
}

.static-content h2 {
  font-size: 20px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 12px;
}

.static-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  margin-top: 16px;
  margin-bottom: 8px;
}

.static-content p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 8px;
}

.static-content ul {
  padding-left: 24px;
  margin-bottom: 8px;
}

.static-content li {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 4px;
}

.static-content a {
  color: #2b7de9;
  text-decoration: none;
  font-weight: 500;
}

.static-content a:hover {
  text-decoration: underline;
}
