@import url("https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap");

:root {
  --text: #d4f5d4;
  --muted: #6ba66b;
  --accent: #39ff14;
  --heading: #39ff14;
  --bg: #000000;
  --rule: #1a3a1a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

header h1 {
  font-size: 2rem;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
  color: var(--heading);
}

section h2 {
  color: var(--heading);
}

strong {
  color: var(--heading);
  font-weight: 700;
}

.logo {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 0.75rem;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tagline {
  color: var(--muted);
  margin: 0;
}

section {
  margin-top: 2.5rem;
}

section h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.005em;
}

p,
li {
  color: var(--text);
}

ul {
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.5rem;
}

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

a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.9rem;
}

footer a {
  color: var(--muted);
}

.sms-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.sms-form label {
  color: var(--heading);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.sms-form input[type="text"],
.sms-form input[type="tel"],
.sms-form input[type="email"] {
  background: #0a0f0a;
  color: var(--text);
  border: 1px solid var(--rule);
  padding: 0.6rem 0.75rem;
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: 2px;
}

.sms-form input[type="text"]:focus,
.sms-form input[type="tel"]:focus,
.sms-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
}

.sms-form .checkbox-row {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-top: 1rem;
  padding: 0.85rem;
  border: 1px solid var(--rule);
  border-radius: 2px;
}

.sms-form .checkbox-row input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.sms-form .consent-label {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.sms-form button {
  margin-top: 1rem;
  background: var(--accent);
  color: #000;
  border: none;
  padding: 0.75rem 1.25rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 2px;
  align-self: flex-start;
}

.sms-form button:hover {
  background: #50ff30;
}

.sms-success {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--accent);
  border-radius: 2px;
  background: #051005;
}

.sms-success p {
  margin: 0 0 0.5rem;
}

.sms-success p:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  main {
    padding: 2rem 1.25rem 3rem;
  }
  header h1 {
    font-size: 1.6rem;
  }
  .sms-form button {
    align-self: stretch;
  }
}
