:root {
  --bg: #F5F0E8;
  --bg-warm: #EDE6D6;
  --fg: #1A1A18;
  --fg-muted: #5C5A52;
  --accent: #D4620A;
  --accent-warm: #F0903A;
  --teal: #2A6B5A;
  --teal-light: #EAF4EF;
  --white: #FDFAF5;
  --border: #D4C9B5;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Bitter', Georgia, serif;
  line-height: 1.2;
}

/* ─── MANIFESTO ─── */
.manifesto {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding: 80px 64px 80px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
  min-height: 520px;
}

.manifesto-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.manifesto-headline {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 20px;
  max-width: 560px;
}

.manifesto-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 500px;
  line-height: 1.65;
}

.manifesto-rule {
  display: flex;
  gap: 8px;
  margin-top: 36px;
}

.rule-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* Tool board illustration */
.tool-board {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 4px 4px 0 var(--border);
}

.tool-card {
  width: 72px;
  height: 72px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-card--wrench { background: #FFF3E8; color: var(--accent); }
.tool-card--tape  { background: var(--teal-light); color: var(--teal); }
.tool-card--hammer { background: #F5F0E8; color: var(--fg); }

.tool-card svg { width: 40px; height: 40px; }

/* ─── FIXES ─── */
.fixes {
  padding: 80px 64px;
  border-bottom: 1px solid var(--border);
}

.fixes-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
}

.fixes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.fix-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 24px;
  border-radius: 3px;
  transition: box-shadow 0.2s;
}

.fix-card:hover {
  box-shadow: 4px 4px 0 var(--border);
  transform: translate(-2px, -2px);
}

.fix-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 16px;
}

.fix-icon svg { width: 100%; height: 100%; }

.fix-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.fix-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ─── CATEGORIES ─── */
.categories {
  padding: 80px 64px;
  background: var(--fg);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.categories::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 280px;
  height: 280px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.07;
}

.cat-header {
  margin-bottom: 56px;
}

.cat-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  display: block;
  margin-bottom: 12px;
}

.cat-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--white);
}

.cat-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.cat-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-right: 40px;
}

.cat-item:nth-child(odd) { padding-right: 40px; }
.cat-item:nth-child(even) { padding-right: 0; padding-left: 40px; border-left: 1px solid rgba(255,255,255,0.12); }

.cat-number {
  font-family: 'Bitter', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-warm);
  min-width: 28px;
  padding-top: 3px;
}

.cat-content h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.cat-content p {
  font-size: 15px;
  color: rgba(253,250,245,0.6);
  line-height: 1.55;
}

.categories-tape {
  margin-top: 48px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

.tape-strip {
  display: flex;
  gap: 48px;
  animation: ticker 18s linear infinite;
  white-space: nowrap;
}

.tape-strip span {
  font-family: 'Bitter', serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(253,250,245,0.4);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── STARTING ─── */
.starting {
  padding: 80px 64px;
  border-bottom: 1px solid var(--border);
}

.starting-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  margin-bottom: 20px;
}

.starting-body {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.gear-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.gear-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.gear-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--white);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.gear-icon svg { width: 28px; height: 28px; }

.gear-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
}

.gear-plus {
  font-family: 'Bitter', serif;
  font-size: 28px;
  color: var(--border);
  line-height: 1;
}

.starting-cta-note {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.starting-cta-note p {
  font-size: 15px;
  color: var(--fg-muted);
  font-style: italic;
}

/* ─── CLOSING ─── */
.closing {
  padding: 100px 64px;
  background: var(--bg-warm);
  text-align: center;
}

.closing-inner { max-width: 640px; margin: 0 auto; }

.closing-rule {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 36px;
}

.closing-headline {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.25;
}

.closing-sub {
  font-size: 15px;
  color: var(--fg-muted);
  font-style: italic;
}

/* ─── FOOTER ─── */
.footer {
  padding: 32px 64px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Bitter', serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--fg);
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .manifesto {
    grid-template-columns: 1fr;
    padding: 60px 32px;
  }
  .manifesto-illustration { display: none; }

  .fixes { padding: 60px 32px; }
  .fixes-grid { grid-template-columns: 1fr 1fr; }

  .categories { padding: 60px 32px; }
  .cat-list { grid-template-columns: 1fr; }
  .cat-item:nth-child(even) { border-left: none; padding-left: 0; }

  .starting { padding: 60px 32px; }
  .closing { padding: 80px 32px; }
  .footer { padding: 28px 32px; }
}

@media (max-width: 600px) {
  .fixes-grid { grid-template-columns: 1fr; }
  .gear-row { gap: 16px; }
}