@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&family=Jura:wght@600&display=swap');

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

body {
  font-family: 'Courier Prime', monospace;
  font-weight: 400;
  line-height: 1.6;
  background: #f5f5f0;
  color: #222;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 2rem;
}

main {
  max-width: 480px;
  width: 100%;
}

h1 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #222;
}

p {
  margin-bottom: 1.5rem;
}

.cta {
  display: inline-block;
  background: #e8912d;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-family: 'Jura', sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta:hover {
  background: #d4801f;
}

.fine-print {
  font-size: 0.85rem;
  color: #666;
}

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2rem 0;
}

.ideas p {
  margin-bottom: 0.75rem;
}

.ideas form {
  display: flex;
  gap: 0.5rem;
}

.ideas input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid #ccc;
  background: #fff;
  color: #222;
  font-family: 'Courier Prime', monospace;
  font-size: 1rem;
}

.ideas input::placeholder {
  color: #999;
}

.ideas button {
  padding: 0.5rem 1rem;
  background: #222;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Courier Prime', monospace;
  font-size: 1rem;
}

.ideas button:hover {
  background: #444;
}

footer {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #999;
}

footer a {
  color: #666;
}

footer a:hover {
  color: #222;
}
