:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --highlight: #ffff00;
  --muted: #666666;
  --border: #eeeeee;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  display: flex;
  justify-content: center;
  padding: 4rem 1.5rem;
  line-height: 1.6;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

.content-wrapper {
  width: 100%;
  max-width: 750px;
}

.main-title {
  font-size: 2rem;
  margin-bottom: 0;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid var(--text);
  display: block;
  padding-bottom: 1px;
}

.byline, .date-line {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
  color: var(--muted);
}

.nav-links {
  font-size: 0.9rem;
  display: inline;
  margin-left: 1.5rem;
  color: var(--text);
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  background-color: var(--highlight);
}

h2 {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 3rem 0 1rem 0;
  display: block;
  border-bottom: 1px solid var(--border);
  padding-bottom: 5px;
}

p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.marker {
  background-color: var(--highlight);
  padding: 0 2px;
  font-weight: 500;
}

.manifesto-list {
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

.manifesto-list li {
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.manifesto-list li::marker {
  font-size: 1.4rem;
  color: var(--text);
}

.link-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.link-item {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  font-size: 1rem;
  border-bottom: 1px dotted var(--border);
  padding: 0.2rem 0;
  gap: 1rem;
}

.link-item a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.link-item a:hover {
  background-color: var(--highlight);
}

.link-date {
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-box {
  border: 1px solid var(--text);
  padding: 1.5rem;
  margin-bottom: 2rem;
  background-color: #fafafa;
}

.contact-method {
  margin-bottom: 1rem;
}

.contact-method b {
  text-transform: uppercase;
  font-size: 0.9rem;
}

.warning {
  font-weight: bold;
  border-left: 3px solid var(--text);
  padding-left: 1rem;
  margin: 2rem 0;
}

.footer-nav {
  text-align: left;
  font-size: 0.9rem;
  margin-top: 6rem;
  margin-bottom: 0;
}

.footer-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: bold;
  margin-right: 1rem;
}

.footer-nav a:hover {
  background-color: var(--highlight);
}

.footer {
  margin-top: 0;
  font-size: 0.9rem;
  text-align: left;
  border-top: 1px solid var(--text);
  padding-top: 1rem;
  color: var(--muted);
}

a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: #000;
  background-color: var(--highlight);
}

@media (max-width: 600px) {
  body { padding: 2rem 1rem; }
  .intro, p { font-size: 1.1rem; }
}
