/* manifesto.css */

* {
  box-sizing: border-box;
}


body {
  margin: 0;
  padding: 24px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
}

main {
  max-width: 720px;
  margin:auto;
  padding-bottom:72px
}

h1 {
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: 600;
}

.lede {
  margin: 0 0 24px 0;
}

section {
  margin-bottom: 24px;
}

p {
  margin: 0 0 24px 0;
}

ul {
  margin: 8px 0 0 16px;
  padding: 0;
}

li {
  margin: 4px 0;
}

.rule {
  font-style:italic
}
label {
  font-size: 14px;
}

input {
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  border: none;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 16px;
  background: transparent;
  border-radius:4px;
}

input:focus {
  outline: none;
}

button {
  margin-top: 8px;
  padding: 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  text-decoration: underline;
}
/* add to manifesto.css (bottom) */

.two-colors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}


.is-hidden {
  display: none;
}
/* =========================
Apple-style primary button
========================= */

button,
input[type="submit"] {
	-webkit-appearance: none;
	appearance: none;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	min-height: 48px;

	padding: 0 20px;
	margin-top: 12px;

	border: none;
	border-radius: 12px;

	background: #0071e3; /* Apple blue */
	color: #ffffff;

	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", system-ui, sans-serif;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: -0.01em;

	cursor: pointer;
	text-align: center;
}

/* hover / focus (desktop) */
button:hover,
button:focus-visible {
	background: #0077ed;
}

/* active (iOS press) */
button:active {
	background: #006edb;
	transform: scale(0.99);
}

/* disabled */
button:disabled {
	background: #b5b5b5;
	color: #ffffff;
	cursor: default;
	transform: none;
}

/* remove iOS tap highlight */
button {
	-webkit-tap-highlight-color: transparent;
}

a {text-decoration:none;color:#000}

.slug-row { display: flex; align-items: center; gap: 10px; }
.slug-prefix { opacity: .7; font-size: 14px; white-space: nowrap; }
.hint { margin: 8px 0 0 0; font-size: 12px; opacity: .6; }
