.pixel-11-landing {
  --p11-accent: #22a1c4;
  --p11-accent-hover: #1c86a3;
  --p11-ink: #202020;
  --p11-muted: #707070;
  --p11-border: #bdc3c7;
  --p11-surface: #f3f7f8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--p11-ink);
}

/* --- hero --- */
.pixel11-hero {
  padding: 3rem 1.25rem;
}
.pixel11-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.pixel11-hero__copy {
  flex: 1 1 0;
}
.pixel11-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--p11-accent);
  margin: 0 0 0.75rem;
}
.pixel11-title {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--p11-ink);
}
.pixel11-subhead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--p11-muted);
  margin: 0 0 0.75rem;
  max-width: 34rem;
}
/* --- form --- */
.pixel11-form-wrap {
  max-width: 34rem;
}
.pixel11-form__row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pixel11-input {
  flex: 1 1 auto;
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--p11-border);
  border-radius: 8px;
  background: #fff;
  color: var(--p11-ink);
}
.pixel11-input:focus {
  outline: none;
  border-color: var(--p11-accent);
  box-shadow: 0 0 0 3px rgba(34, 161, 196, 0.18);
}
.pixel11-btn {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  color: #fff;
  background: var(--p11-accent);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.pixel11-btn:hover {
  background: var(--p11-accent-hover);
}
.pixel11-btn:disabled {
  opacity: 0.6;
  cursor: default;
}
.pixel11-error {
  display: none;
  margin-top: 0.75rem;
  color: #d80505;
  font-size: 0.9rem;
}
.pixel11-success {
  display: none;
  margin-top: 0.75rem;
  color: var(--p11-accent-hover);
  font-weight: 600;
}
.pixel11-disclosure {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--p11-muted);
}

/* --- hero media --- */
.pixel11-hero__media {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pixel11-hero__img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

/* --- how it works --- */
.pixel11-how {
  background: var(--p11-surface);
  padding: 3rem 1.25rem;
}
.pixel11-how__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.pixel11-how__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 2rem;
}
.pixel11-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pixel11-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}
.pixel11-step__num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--p11-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}
.pixel11-step__text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* --- tablet / desktop --- */
@media (min-width: 768px) {
  .pixel11-hero {
    padding: 5rem 2rem;
  }
  .pixel11-hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
  .pixel11-title {
    font-size: 3.5rem;
  }
  .pixel11-form__row {
    flex-direction: row;
    align-items: center;
  }
  .pixel11-steps {
    flex-direction: row;
  }
  .pixel11-step {
    flex: 1 1 0;
    flex-direction: column;
    text-align: center;
  }
  .pixel11-step__text {
    text-align: center;
  }
}
