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

:root {
  --black: #000;
  --white: #fff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--serif);
}

/* ---- HEADER ---- */
header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--black);
  z-index: 10;
}

.header-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo svg {
  display: block;
  height: 28px;
  width: auto;
}

.x-handle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--black);
  white-space: nowrap;
  border: 1px solid var(--black);
  padding: 0.35rem 0.7rem;
  transition: background 0.15s, color 0.15s;
}

.x-handle:hover {
  background: var(--black);
  color: var(--white);
}

.x-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ---- MAIN ---- */
main {
  max-width: 680px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 5rem;
}

.manifesto-header {
  margin-bottom: 2.5rem;
}

.tag {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ---- STATEMENTS ---- */
.statements {
  list-style: none;
  counter-reset: s;
}

.statements li {
  counter-increment: s;
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  column-gap: 1rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--black);
  font-size: 1.05rem;
  line-height: 1.55;
}

.statements li:last-child {
  border-bottom: 1px solid var(--black);
}

.statements li::before {
  content: counter(s, decimal-leading-zero);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-top: 0.3rem;
  align-self: start;
}

.statements li.s-large {
  font-size: 1.45rem;
  line-height: 1.35;
  font-weight: 700;
}

/* ---- CLOSING ---- */
.closing {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.closing p {
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  color: #333;
}

.br-desktop { display: none; }

/* ---- FOOTER ---- */
footer {
  max-width: 680px;
  margin: 0 auto;
  padding: 1.4rem 1.25rem 3rem;
  border-top: 1px solid var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

footer a {
  color: var(--black);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ---- DESKTOP ---- */
@media (min-width: 600px) {
  html { font-size: 17px; }

  .header-inner { padding: 1rem 2rem; }

  main { padding: 4.5rem 2rem 6rem; }

  footer { padding: 1.5rem 2rem 3rem; }

  .statements li { column-gap: 1.5rem; }

  .statements li.s-large { font-size: 1.65rem; }

  .br-desktop { display: inline; }

  .closing p { font-size: 1rem; }
}
