/**
 * Minimal pro styles for the idgamer.com domain sale landing page.
 */

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
}

.page {
  max-width: 40rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  color: #444;
}

.bullets {
  margin: 0 0 2.5rem;
  padding: 0;
  list-style: none;
}

.bullets li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #1a1a1a;
}

.offer-form {
  display: grid;
  gap: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font: inherit;
  background: #fff;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid #1a1a1a;
  outline-offset: 1px;
  border-color: #1a1a1a;
}

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

/* Honeypot: hidden from users, still present in the DOM for bots. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

button[type="submit"] {
  margin-top: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 4px;
  font: inherit;
  font-weight: 500;
  color: #fff;
  background: #1a1a1a;
  cursor: pointer;
}

button[type="submit"]:hover {
  background: #333;
}

.privacy {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: #666;
}

.thank-you {
  text-align: center;
  padding-top: 4rem;
}

.thank-you h1 {
  margin-bottom: 1rem;
}

.thank-you p {
  margin: 0;
  color: #444;
}

.thank-you a {
  color: #1a1a1a;
}

