@font-face {
  font-family: 'General Sans';
  src: url('fonts/general-sans-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'General Sans';
  src: url('fonts/general-sans-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'General Sans';
  src: url('fonts/general-sans-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #0E1B2C; }
body { font-family: 'General Sans', Helvetica, Arial, sans-serif; }
a { color: #FAF6F0; text-decoration: none; transition: color 0.15s ease, border-color 0.15s ease; }
a:hover { color: #F4741F; }
::selection { background: #F4741F; color: #FAF6F0; }

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #14243A 0%, #0E1B2C 62%);
  color: #FAF6F0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 48px;
}
.topbar-logo img {
  height: 42px;
  width: auto;
  display: block;
}
.contact-pill {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.85;
  border: 1px solid rgba(250, 246, 240, 0.22);
  border-radius: 999px;
  padding: 9px 20px;
}
.contact-pill:hover {
  border-color: #F4741F;
  color: #F4741F;
  opacity: 1;
}

.content {
  flex: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 32px 80px;
}
.content h1 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  margin: 0 0 8px;
}
.content .updated {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #F4741F;
  margin: 0 0 40px;
}
.content h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 40px 0 12px;
}
.content h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 28px 0 8px;
}
.content p, .content li {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(250, 246, 240, 0.75);
}
.content p { margin: 0 0 14px; }
.content ul { margin: 0 0 14px; padding-left: 22px; }
.content li { margin-bottom: 6px; }
.content a { color: #F4741F; }
.content a:hover { text-decoration: underline; }
.content strong { color: #FAF6F0; font-weight: 500; }

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 48px;
  border-top: 1px solid rgba(250, 246, 240, 0.10);
  font-size: 14px;
  color: rgba(250, 246, 240, 0.60);
}
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-links a { color: rgba(250, 246, 240, 0.85); }
.footer-links a:hover { color: #F4741F; }

@media (max-width: 600px) {
  .topbar { padding: 24px 24px; }
  .content { padding: 16px 24px 64px; }
  .footer { padding: 24px 24px; justify-content: center; text-align: center; }
  .footer-links { justify-content: center; gap: 18px; }
}
