:root {
  --bg: #02041a;
  --bg-soft: #050923;
  --fg: #ffbf80;
  --fg-muted: #ffcf9f;
  --link: #ffd59a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: "Bahnschrift", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.page {
  padding: 2.5rem 3rem;
  max-width: 60rem;
}

@media (max-width: 720px) {
  .page {
    padding: 1.5rem;
  }
}

.site-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  margin: 0 0 0.5rem 0;
}

.site-subtitle {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin: 0 0 1.5rem 0;
}

.h-main {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.08em;
  margin: 1.5rem 0 0.3rem 0;
}

p {
  margin: 0 0 0.6rem 0;
}

.list-plain,
.portal-list {
  list-style: none;
  padding-left: 0;
  margin: 0.2rem 0 0.6rem 0;
}

.list-plain li,
.portal-list li {
  margin: 0.1rem 0;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

.portal-link {
  font-size: 0.9rem;
}

.c_title {
  color: #7fe0ff; /* cyan */
  font-size: 1.15rem;
  margin: 1.2rem 0 0 0;
}

.pledge {
  color: #ff77c8; /* pink */
  font-style: italic;
}

section {
  margin: 1.5rem 0;
}