@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap");

:root {
  --paper: #fbf7f1;
  --paper-strong: #ffffff;
  --ink: #1b1f24;
  --muted: #5b6471;
  --accent: #e36a3d;
  --accent-soft: #f7d2c3;
  --stroke: rgba(27, 31, 36, 0.12);
  --shadow: 0 16px 32px rgba(27, 31, 36, 0.12);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  line-height: 1.5;
  background-color: #2c2e30;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.1) 100%);
  background-size: cover, 4px 4px;
}

a { color: inherit; text-decoration: none; }

/* TECHNICAL SPEC LAYOUT */
.manifesto {
  background: var(--paper-strong);
  width: min(1120px, 100% - 10vw);
  margin: 38px auto 0;
  padding: 80px 0 0;
  display: flex;
  flex-direction: column;
}

.manifesto-hero {
  max-width: 850px;
  margin: 0 auto 60px;
  text-align: center;
  padding: 0 40px;
}

.serif-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 20px;
  letter-spacing: -0.03em;
}

.serif-sub {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  color: var(--ink);
  border-bottom: 1px solid var(--stroke);
  padding-bottom: 10px;
  display: inline-block;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
}

.casual-text {
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 750px;
  margin: 20px auto 0;
}

/* SPEC SECTIONS */
.spec-section {
  padding: 40px 8vw;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.spec-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
}

.spec-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.list-item {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 20px;
  align-items: baseline;
}

.list-item strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.list-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* BUTTONS */
.button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
}

.button:hover { transform: translateY(-1px); }
.button.ghost { background: transparent; color: var(--accent); }

/* RESPONSIVE */
@media (max-width: 850px) {
  .spec-grid { grid-template-columns: 1fr; gap: 20px; }
  .list-item { grid-template-columns: 1fr; gap: 5px; }
  .manifesto-hero { margin-bottom: 40px; }
}
