/* Shared styles for About / Contact / Privacy / Terms */
.static-page {
  min-height: 100vh;
  background: radial-gradient(circle at 50% -20%, #171053, #03051d 44%);
  color: #d2d5e6;
}

.static-page .page-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 20px 64px;
}

.static-page .page-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.static-page .logo {
  font-size: 22px;
  letter-spacing: -1px;
}

.static-page .back {
  color: #ffd32a;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.static-page .back:hover {
  text-decoration: underline;
}

.static-page h1 {
  margin: 0 0 8px;
  color: #ffd32a;
  font-size: 34px;
  line-height: 1.15;
}

.static-page .lede {
  margin: 0 0 28px;
  color: #aab0d2;
  font-size: 16px;
  line-height: 1.6;
}

.static-page h2 {
  margin: 28px 0 10px;
  color: #fff;
  font-size: 18px;
}

.static-page p,
.static-page li {
  line-height: 1.75;
  color: #c9cede;
}

.static-page ul,
.static-page ol {
  padding-left: 1.25rem;
  margin: 0 0 14px;
}

.static-page a {
  color: #ffd32a;
}

.static-page .card {
  background: linear-gradient(180deg, #0d1037, #090c2c);
  border: 1px solid #272d67;
  border-radius: 14px;
  padding: 18px 20px;
  margin: 18px 0;
}

.static-page .card strong {
  color: #fff;
}

.static-page .meta {
  font-size: 13px;
  color: #8e95b8;
  margin-bottom: 24px;
}

.static-page .contact-grid {
  display: grid;
  gap: 12px;
  margin: 18px 0 28px;
}

.static-page .contact-item {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #272d67;
  background: #0b0f2d;
}

.static-page .contact-item span {
  font-size: 12px;
  color: #8e95b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.static-page .contact-item a,
.static-page .contact-item b {
  color: #ffd32a;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.static-page footer.page-foot {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid #1f244c;
  font-size: 12px;
  color: #8e95b8;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.static-page footer.page-foot a {
  color: #b8acd8;
  text-decoration: none;
}

.static-page footer.page-foot a:hover {
  color: #ffd32a;
}

@media (max-width: 600px) {
  .static-page h1 {
    font-size: 28px;
  }

  .static-page .page-shell {
    padding: 20px 16px 48px;
  }
}
