:root {
  --bg: #fafafa;
  --fg: #111;
  --muted: #555;
  --border: #d8d8d8;
  --accent: #111;
  --max-width: 36rem;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.25rem 3rem;
}

.page--narrow {
  max-width: 32rem;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.domain {
  font-size: clamp(2.25rem, 7vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  word-break: break-all;
}

.pitch {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 2.5rem;
}

.inquiry {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.field {
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-size: 0.85rem;
  color: var(--muted);
}

.field .optional {
  color: var(--muted);
  font-weight: 400;
}

.field input,
.field textarea {
  font: inherit;
  color: var(--fg);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.6rem 0.75rem;
  width: 100%;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.field textarea {
  resize: vertical;
  min-height: 6rem;
}

.field button {
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 0.7rem 1.2rem;
  font: inherit;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  align-self: flex-start;
}

.field button:hover {
  opacity: 0.9;
}

/* Honeypot — visually and assistive-tech hidden, still in DOM for bots */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.privacy-disclosure {
  margin: 1.5rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.page-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

.thanks-headline {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 1rem;
}

.thanks-body {
  color: var(--muted);
}

.thanks-back {
  margin-top: 2rem;
}

h2 {
  margin-top: 2rem;
  font-size: 1.1rem;
}
