/* PrintPod — landing page.
   Same tokens as the app. The app is a form, so it lives on one card; the
   landing page is a document, so it gets its structure from full-width bands
   that change ground — paper, white, ink — each opening with a centred head.
   Braun orange stands in for the brand colour a marketing page needs, but it
   stays on chips, ticks and actions; it is never a page-sized fill. */

html {
  scroll-behavior: smooth;
}

/* Clear the sticky header when jumping to an anchor. */
[id] {
  scroll-margin-top: 6.5rem;
}

.landing {
  --gutter: 1.25rem;
  --measure: 1180px;
  --accent-tint: #ffece0;   /* icon chips */
  --accent-wash: #fff7f2;   /* the PrintPod panel ground */
  --accent-line: #f9caa8;   /* its border */
  --dark: #171614;
}

@media (min-width: 900px) {
  .landing {
    --gutter: 2.5rem;
  }
}

.landing h1,
.landing h2,
.landing h3 {
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.landing ::selection {
  background: var(--accent);
  color: #fff;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10;
  background: var(--ink);
  color: var(--surface);
  padding: 0.65rem 1rem;
  border-radius: 0 0 var(--radius) 0;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Buttons (the app styles button[type=submit]; these are links) ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease,
    transform 0.1s ease;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: var(--accent-down);
}

.btn-accent:active {
  transform: translateY(1px);
}

.btn-quiet {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-quiet:hover {
  border-color: var(--ink);
}

.btn-sm {
  font-size: 0.9375rem;
  padding: 0.55rem 1.15rem;
}

.btn-lg {
  font-size: 1.0625rem;
  padding: 0.95rem 1.85rem;
}

/* ---------- Bands ---------- */

/* Bands run edge to edge so they can carry their own ground; .wrap is what
   holds the content to the measure. */
.wrap {
  max-width: var(--measure);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.band {
  padding: 4.5rem 0;
}

@media (min-width: 900px) {
  .band {
    padding: 6.5rem 0;
  }
}

.band-surface {
  background: var(--surface);
}

/* The one inverted band, saved for the close. Redefining the tokens rather
   than restyling each child means everything inside keeps working unchanged. */
.band-ink {
  background: var(--dark);
  --paper: #171614;
  --surface: #201f1c;
  --ink: #f5f3f0;
  --ink-muted: #a29d95;
  --line: #302e2a;
  --line-strong: #45423c;
  color: var(--ink);
}

/* ---------- Pill + centred section head ---------- */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.35rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.band-head {
  max-width: 44rem;
  margin: 0 auto 3rem;
  text-align: center;
}

@media (min-width: 900px) {
  .band-head {
    margin-bottom: 4rem;
  }
}

.band-heading {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
}

.band-sub {
  margin: 1rem auto 0;
  max-width: 42ch;
  color: var(--ink-muted);
  font-size: 1.0625rem;
  line-height: 1.6;
}

/* ---------- Site header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(243, 241, 238, 0.82);
  backdrop-filter: saturate(1.6) blur(12px);
  -webkit-backdrop-filter: saturate(1.6) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

/* Set by landing.js once the page is scrolled — the hairline only earns its
   keep when there is content passing underneath. */
.site-header.is-stuck {
  border-bottom-color: var(--line);
}

.site-header-inner {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-block;
  line-height: 0;
}

.brand img {
  display: block;
  height: 38px;
  width: auto;
}

@media (min-width: 700px) {
  .brand img {
    height: 46px;
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link {
  display: none;
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.55rem 0.85rem;
  transition: color 0.15s ease;
}

.nav-link:hover {
  color: var(--ink);
}

@media (min-width: 700px) {
  .nav-link {
    display: inline-block;
  }

  .site-nav {
    gap: 0.75rem;
  }
}

/* ---------- Hero ---------- */

.band-hero .wrap {
  text-align: center;
}

@media (min-width: 900px) {
  .band-hero {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.hero-title {
  margin: 0 auto;
  max-width: 22ch;
  font-size: clamp(2.5rem, 7.5vw, 4.5rem);
  line-height: 1.03;
  font-weight: 700;
}

.hero-lede {
  margin: 1.5rem auto 0;
  max-width: 48ch;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

@media (min-width: 900px) {
  .hero-lede {
    font-size: 1.25rem;
    margin-top: 1.75rem;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.facts {
  display: grid;
  gap: 0 2.5rem;
  list-style: none;
  margin: 3.5rem 0 0;
  padding: 0;
  font-size: 0.9375rem;
  color: var(--ink-muted);
}

@media (min-width: 620px) {
  .facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .facts {
    margin-top: 4.5rem;
  }
}

/* Centred under a centred hero, so the tick rides in front of the label
   rather than hanging off an indent that no longer has an edge to align to. */
.facts li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line-strong);
}

/* A tick rather than a bullet — these are things you don't have to do. */
.facts li::before {
  content: "";
  flex-shrink: 0;
  width: 0.62rem;
  height: 0.33rem;
  margin-top: -0.22rem;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}

/* ---------- Benefit cards ---------- */

.card-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.9rem 1.75rem 2rem;
}

.card h3 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
}

.card p {
  margin: 0.55rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

/* A card is something to read, not something to click, so there is no hover
   state — an accent that lights up under the cursor promises an action that
   isn't there. The chip carries the colour instead. */
.glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  background: var(--accent-tint);
  color: var(--accent);
}

.glyph svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.glyph svg .glyph-solid {
  fill: currentColor;
  stroke: none;
}

/* ---------- Step cards ---------- */

.steps-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 860px) {
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Solid ink rather than solid accent: three panels of Braun orange would
   shout down every other use of it on the page. */
.step {
  background: var(--dark);
  color: #f5f3f0;
  border-radius: 16px;
  padding: 2rem 1.75rem 2.25rem;
  text-align: center;
}

.step-badge {
  display: inline-block;
  margin: 0 0 1.35rem;
  padding: 0.4rem 1.05rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.step h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
}

/* Excludes the badge, which is also a <p> and would otherwise inherit the
   muted colour and margins meant for the description. */
.step p:not(.step-badge) {
  margin: 0.65rem auto 0;
  max-width: 32ch;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #a29d95;
}

/* ---------- Privacy points ---------- */

.points {
  margin: 0;
  display: grid;
  gap: 0 3rem;
}

@media (min-width: 720px) {
  .points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.point {
  padding: 1.6rem 0 1.9rem;
  border-top: 1px solid var(--line-strong);
}

.point dt {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.point dd {
  margin: 0.55rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

/* ---------- Comparison panels ---------- */

.panels {
  display: grid;
  gap: 1rem;
}

@media (min-width: 820px) {
  .panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem 1.75rem 2.25rem;
}

/* The one panel that gets colour, so which side is which needs no explaining. */
.panel-us {
  background: var(--accent-wash);
  border-color: var(--accent-line);
}

.panel-title {
  margin: 0 0 1.5rem;
  text-align: center;
  font-size: 1.1875rem;
  font-weight: 700;
}

.panel-us .panel-title {
  color: var(--accent-down);
}

.plist {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.plist li {
  position: relative;
  padding: 0.7rem 0 0.7rem 2rem;
  color: var(--ink-muted);
}

.plist-yes li {
  color: var(--ink);
}

/* Marks drawn in CSS so fourteen rows of them cost nothing in markup. */
.plist li::before,
.plist-yes li::after {
  content: "";
  position: absolute;
  left: 0;
}

/* A ring for both sides; what differs is what sits inside it. */
.plist li::before {
  top: 0.78rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
}

.plist-yes li::before {
  border-color: var(--accent);
}

.plist-yes li::after {
  top: 1.16rem;
  left: 0.3rem;
  width: 0.5rem;
  height: 0.26rem;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}

/* ---------- Closing CTA ---------- */

/* The white lockup, on the only dark ground it has to sit on. Decorative —
   the brand is already named in the header and footer, so alt stays empty. */
.cta-mark {
  display: block;
  height: 30px;
  width: auto;
  margin-bottom: 2.75rem;
}

/* Two audiences, two asks: print something, or host a pod. */
.cta {
  display: grid;
}

@media (min-width: 820px) {
  .cta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.cta-block {
  padding: 2.25rem 0;
}

.cta-block + .cta-block {
  border-top: 1px solid var(--line);
}

@media (min-width: 820px) {
  .cta-block {
    padding: 0 4.5rem 0 0;
  }

  .cta-block + .cta-block {
    border-top: none;
    border-left: 1px solid var(--line);
    padding: 0 0 0 4.5rem;
  }
}

.cta-title {
  margin: 0;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 700;
  line-height: 1.12;
}

.cta-block-aside .cta-title {
  color: var(--ink-muted);
}

.cta-lede {
  margin: 0.75rem 0 1.9rem;
  max-width: 28rem;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ---------- Site footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
}

.site-footer-inner {
  padding-top: 2rem;
  padding-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  font-size: 0.8125rem;
  color: var(--ink-muted);
}

.site-footer p {
  margin: 0;
}

.site-footer-brand {
  line-height: 0;
}

.site-footer-brand img {
  display: block;
  height: 24px;
  width: auto;
}

.site-footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.site-footer a {
  color: inherit;
}

.site-footer a:hover {
  color: var(--ink);
}

/* ---------- Scroll reveal ---------- */

/* Only applied once landing.js confirms it can un-hide these again. */
.js-reveal .reveal,
.js-reveal .reveal-stagger > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js-reveal .reveal.is-in,
.js-reveal .reveal-stagger.is-in > * {
  opacity: 1;
  transform: none;
}

.js-reveal .reveal-stagger > :nth-child(2) {
  transition-delay: 90ms;
}

.js-reveal .reveal-stagger > :nth-child(3) {
  transition-delay: 180ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js-reveal .reveal,
  .js-reveal .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}
