/* /fp/2026-pixel-lineup — launch lineup landing page.
   Structurally a sibling of pixel-11.css minus the waitlist-form rules, plus the
   repeated product-section block. Deliberately NOT sharing pixel-11.css: that file
   styles a live page and a tweak here must not change it. */

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

/* --- hero --- */
.plp-hero {
  padding: 3rem 1.25rem;
}
.plp-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.plp-hero__copy {
  flex: 1 1 0;
}
.plp-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--plp-accent);
  margin: 0 0 0.75rem;
}
.plp-title {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--plp-ink);
}
.plp-subhead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--plp-muted);
  margin: 0 0 0.75rem;
  max-width: 34rem;
}
/* --- hero media --- */
.plp-hero__media {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.plp-hero__img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

/* --- product sections (one per configured section) --- */
.plp-group {
  padding: 2.5rem 1.25rem;
}
.plp-group:nth-of-type(even) {
  background: var(--plp-surface);
}
.plp-group__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.plp-group__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.plp-group__blurb {
  font-size: 1rem;
  color: var(--plp-muted);
  margin: 0 0 2rem;
}
/* The degraded-state CTA uses bootstrap's .btn .btn-primary (compressed into every
   page by base.html) rather than a bespoke button — it is the one control shown when
   everything else on the page has failed, so it should inherit site-wide button
   styling rather than need its own maintenance. */

/* --- how it works --- */
.plp-how {
  background: var(--plp-surface);
  padding: 3rem 1.25rem;
}
.plp-how__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.plp-how__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 2rem;
}
.plp-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.plp-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}
.plp-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(--plp-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}
.plp-step__text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

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