/* Public Mechanics - Manifesto Style */

@import url('https://fonts.cdnfonts.com/css/space-grotesk');
@import url('https://fonts.cdnfonts.com/css/ibm-plex-sans');

:root {
  --concrete: #696969;
  --signal-red: #dc143c;
  --charcoal: #2b2b2b;
  --cream: #f5f5f0;
  --text: #1a1a1a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  font-size: 18px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Header */
.site-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 3px solid var(--signal-red);
}

.site-header h1 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.25rem;
  color: var(--concrete);
}

/* Typography */
h2 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
}

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

a:hover {
  color: var(--charcoal);
}

/* Manifesto section */
.manifesto {
  margin-bottom: 3rem;
}

.lead {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  font-weight: 500;
}

.manifesto p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

/* Mindset section */
.mindset {
  background: white;
  padding: 2rem;
  margin: 3rem 0;
  border-left: 4px solid var(--signal-red);
}

.values-list {
  list-style: none;
  margin-top: 1.5rem;
}

.values-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.values-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--signal-red);
  font-weight: bold;
}

/* Sections */
section {
  margin-bottom: 3rem;
}

/* Lists */
ul, ol {
  margin-left: 1.5rem;
  margin-top: 1rem;
}

li {
  margin-bottom: 0.75rem;
}

ul li::marker {
  color: var(--signal-red);
}

/* Numbered lists */
ol {
  counter-reset: item;
  list-style: none;
  margin-left: 0;
}

ol li {
  counter-increment: item;
  padding-left: 3rem;
  position: relative;
}

ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--signal-red);
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.875rem;
}

/* Footer */
.site-footer {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--concrete);
  font-size: 0.9rem;
  color: var(--concrete);
}

.site-footer p {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: var(--signal-red);
}

/* Responsive */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  
  .container {
    padding: 2rem 1.5rem;
  }
  
  .site-header h1 {
    font-size: 2rem;
  }
  
  .lead {
    font-size: 1.25rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
}
