:root {
  --red: #e63946;
  --red-dark: #c1272d;
  --blue: #2667ff;
  --text: #1d2b3a;
  --muted: #6b7a8c;
  --border: #dde4ec;
  --surface: #f5f7fa;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(221, 228, 236, 0.75);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 18px;
  font-weight: 950;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

.nav-links a {
  color: var(--muted);
  font-weight: 800;
}

.hero {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0 18px;
}

.eyebrow {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 8px 0 10px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pill {
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.page {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 64px;
}

.card {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(29, 43, 58, 0.06);
}

h2 {
  margin: 24px 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

h2:first-child {
  margin-top: 0;
}

p {
  margin: 8px 0;
}

ul {
  padding-left: 22px;
}

li {
  margin: 7px 0;
}

.notice {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 193, 69, 0.5);
  border-radius: 16px;
  background: rgba(255, 193, 69, 0.15);
  color: var(--text);
  font-weight: 750;
}

.request-box {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(230, 57, 70, 0.22);
  border-radius: 18px;
  background: rgba(230, 57, 70, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-weight: 900;
}

.button:hover {
  text-decoration: none;
  background: var(--red-dark);
}

.footer {
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-inner {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 680px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    gap: 10px;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 2px;
  }

  .card {
    padding: 18px;
  }
}
