:root {
  --bg: #0f0f0f;
  --surface: #1a1a1a;
  --border: #2a2a2a;
  --text: #e0e0e0;
  --text-muted: #aaa;
  --accent: #c8f542;
  --font: "Courier New", Courier, monospace;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 4rem 1rem;
}

.container {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.site-name {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.site-name a {
  color: inherit;
  text-decoration: none;
}

.back {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  display: block;
  margin-bottom: 3rem;
}

.back:hover {
  color: var(--text);
}

.container {
  width: 100%;
  max-width: 640px;
}

.intro {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.intro .joke {
  color: var(--text-muted);
  display: block;
  margin-top: 0.4rem;
}

.intro p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.cta {
  color: var(--accent);
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 2rem;
}
.optin-hook {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1em;
}

form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

input[type="email"] {
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 0.6rem 0.8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  flex: 1;
  min-width: 200px;
}

input[type="email"]::placeholder {
  color: var(--text-muted);
}

button {
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 0.6rem 1.2rem;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  cursor: pointer;
  white-space: nowrap;
}

button:hover {
  background: var(--accent);
  color: var(--bg);
}

.disclaimer {
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  body {
    align-items: flex-start;
    padding-top: 3rem;
  }

  form {
    flex-direction: column;
  }

  input[type="email"] {
    min-width: 100%;
  }
}

.product-list {
  list-style: none;
}

.product {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

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

.product-name {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.4rem;
}

.product-slogan {
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  white-space: pre-line;
}

.product-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.product-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}

.product-cta {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
}

.product-cta:hover {
  text-decoration: underline;
}

.product-cta.unavailable {
  color: var(--text-muted);
  cursor: default;
  pointer-events: none;
}

footer {
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}

footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

@media (max-width: 600px) {
  body {
    padding: 2rem 1rem;
  }
}
