/**
 * The five static-page sections' CSS, de-scoped and concatenated.
 *
 * WHY one file instead of five: these pages share the shell and are all tiny;
 * a single stylesheet on the layout costs one request and keeps the route
 * files free of `links` bookkeeping. WHY de-scoped: on the live site each rule
 * is prefixed with `#shopify-section-{{ section.id }}` so two instances of the
 * same section can't collide. Standalone renders each of these exactly once,
 * per page, so the prefix has nothing to isolate — see
 * docs/phase2-storefront-spec.md §3.1.
 *
 * The one non-mechanical rewrite: pb-teely.liquid sets its teal brand tokens
 * on the bare section wrapper (`#shopify-section-… { --teely: … }`). That
 * selector has no de-scoped equivalent, so it is re-homed onto `.pb-teely`,
 * the section's own root element — every consumer of those tokens is inside it.
 *
 * Sources are verbatim otherwise; they depend on the global `--pb-*` tokens
 * from printbere.css and on Dawn's `.button` from dawn-base.css.
 */

/* ── pb-how-page.liquid → /pages/how-it-works ─────────────────────────────────── */
.pbhp {
    color: var(--pb-ink);
  }

  /* ── 1) Header band ─────────────────────────────────────────────── */
  .pbhp__hero {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(circle at 80% 18%, rgba(243, 117, 32, 0.16), transparent 52%),
      var(--pb-cream);
    padding: 80px 0 64px;
  }
  .pbhp__hero-inner {
    max-width: var(--page-width, 1280px);
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
  }
  .pbhp__hero h1 {
    font-size: clamp(36px, 5.5vw, 64px);
    line-height: 1.02;
    margin: 0 0 18px;
    color: var(--pb-black);
  }
  .pbhp__lede {
    font-size: 18px;
    line-height: 1.55;
    color: var(--pb-ink);
    max-width: 56ch;
    margin: 0 auto;
  }

  /* shared container + section heading rhythm */
  .pbhp__inner {
    max-width: var(--page-width, 1280px);
    margin: 0 auto;
    padding: 0 32px;
  }
  .pbhp__band {
    padding: 80px 0;
  }
  .pbhp__band--cream2 {
    background: var(--pb-cream-2);
  }
  .pbhp__head {
    text-align: center;
    margin-bottom: 48px;
  }
  .pbhp__head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--pb-black);
  }
  .pbhp__head p {
    margin: 12px auto 0;
    max-width: 52ch;
    color: var(--pb-muted);
    font-size: 16px;
  }

  /* ── 2) Expanded 4-step flow ────────────────────────────────────── */
  .pbhp__steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .pbhp__step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--pb-cream);
    border: 1px solid var(--pb-line);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--pb-shadow-sm);
  }
  .pbhp__num {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: var(--pb-orange);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(243, 117, 32, 0.35);
  }
  .pbhp__step h3 {
    font-size: 19px;
    margin: 4px 0 8px;
    color: var(--pb-black);
  }
  .pbhp__step p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--pb-muted);
    margin: 0;
  }

  /* ── 3) Two ways to print ───────────────────────────────────────── */
  .pbhp__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .pbhp__card {
    background: var(--pb-cream);
    border: 1px solid var(--pb-line);
    border-radius: 18px;
    padding: 32px;
    box-shadow: var(--pb-shadow-md);
  }
  .pbhp__card-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--pb-orange-dark);
    background: var(--pb-orange-soft);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 14px;
  }
  .pbhp__card h3 {
    font-size: 24px;
    margin: 0 0 10px;
    color: var(--pb-black);
  }
  .pbhp__card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--pb-ink);
    margin: 0 0 18px;
  }
  .pbhp__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .pbhp__chip {
    font-size: 13px;
    font-weight: 600;
    color: var(--pb-ink);
    background: var(--pb-cream-2);
    border: 1px solid var(--pb-line);
    padding: 6px 12px;
    border-radius: 999px;
  }

  /* ── 4) Turnaround / quality strip ──────────────────────────────── */
  .pbhp__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .pbhp__stat {
    text-align: center;
    background: var(--pb-cream);
    border: 1px solid var(--pb-line);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: var(--pb-shadow-sm);
  }
  .pbhp__stat-big {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--pb-orange);
    line-height: 1.05;
    margin-bottom: 6px;
  }
  .pbhp__stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--pb-muted);
  }

  /* ── 5) Closing CTA row ─────────────────────────────────────────── */
  .pbhp__cta {
    background: var(--pb-cream);
    border: 1px solid var(--pb-line);
    border-radius: 20px;
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    box-shadow: var(--pb-shadow-md);
  }
  .pbhp__cta-copy h2 {
    margin: 0;
    font-size: clamp(26px, 3.5vw, 38px);
    color: var(--pb-black);
  }
  .pbhp__cta-copy p {
    margin: 10px 0 0;
    color: var(--pb-muted);
    font-size: 16px;
    max-width: 46ch;
  }
  .pbhp__cta-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
  }
  .pbhp__cta-secondary {
    color: var(--pb-orange-dark);
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
  }
  .pbhp__cta-secondary:hover {
    text-decoration: underline;
  }

  /* ── Responsive — stack columns under ~740px ────────────────────── */
  @media (max-width: 740px) {
    .pbhp__steps,
    .pbhp__cards,
    .pbhp__stats {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .pbhp__cta {
      flex-direction: column;
      align-items: flex-start;
      padding: 36px 28px;
    }
  }

/* ── pb-gangsheet-landing.liquid → /pages/gang-sheets ─────────────────────────────────── */
.pb-gs__intro {
      display: flex; align-items: center; justify-content: center; gap: 28px;
      max-width: 880px; margin: 0 auto 40px; text-align: left;
    }
    .pb-gs__benny {
      width: 190px; max-width: 38vw; height: auto; flex-shrink: 0;
      filter: drop-shadow(0 12px 20px rgba(0,0,0,.16));
    }
    @media (max-width: 749px) {
      .pb-gs__intro { flex-direction: column; gap: 12px; text-align: center; }
      .pb-gs__benny { width: 150px; }
    }
  

.pb-gs__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: 880px; margin: 0 auto; }
.pb-gs__card { border: 1px solid rgba(18,18,18,.12); border-radius: 14px; padding: 28px; background: #fff; display: flex; flex-direction: column; }
.pb-gs__badge { display: inline-block; align-self: flex-start; font-size: 1.1rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: #F37520; color: #fff; border-radius: 999px; padding: 4px 12px; }
.pb-gs__price { font-size: 2.6rem; font-weight: 800; margin: 6px 0 10px; }
.pb-gs__price-unit { font-size: 1.3rem; font-weight: 500; color: rgba(18,18,18,.6); margin-left: 6px; }
.pb-gs__features { list-style: none; padding: 0; margin: 0 0 22px; }
.pb-gs__features li { padding: 6px 0 6px 26px; position: relative; line-height: 1.45; }
.pb-gs__features li::before { content: "✓"; position: absolute; left: 0; color: #F37520; font-weight: 800; }
.pb-gs__cta { margin-top: auto; text-align: center; }
.pb-gs__quick { display: block; text-align: center; margin-top: 10px; font-size: 1.3rem; color: #C45A0F; text-decoration: none; font-weight: 600; }
.pb-gs__quick:hover { text-decoration: underline; }
.pb-gs__catalog-strip { max-width: 880px; margin: 28px auto 0; padding: 20px 26px; border: 1px solid rgba(18,18,18,.12); border-radius: 14px; background: #fff; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.pb-gs__how { max-width: 880px; margin: 48px auto 0; }
.pb-gs__steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; }
.pb-gs__step { background: #fff; border: 1px solid rgba(18,18,18,.12); border-radius: 12px; padding: 18px; line-height: 1.45; }
.pb-gs__step span { display: block; width: 32px; height: 32px; border-radius: 50%; background: #F37520; color: #fff; font-weight: 800; text-align: center; line-height: 32px; margin-bottom: 10px; }

/* ── pb-quote.liquid → /pages/request-a-quote ─────────────────────────────────── */
.pb-quote {
    background:
      radial-gradient(circle at 82% 18%, rgba(243, 117, 32, 0.15), transparent 52%),
      var(--pb-cream);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  .pb-quote__inner {
    max-width: var(--page-width, 1280px);
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
  }
  .pb-quote__head {
    max-width: 60ch;
    margin-bottom: 48px;
  }
  .pb-quote__head h1 {
    font-size: clamp(36px, 5.5vw, 60px);
    line-height: 1.02;
    margin: 0 0 16px;
    color: var(--pb-black);
  }
  .pb-quote__sub {
    font-size: 18px;
    color: var(--pb-ink);
    margin: 0;
    max-width: 52ch;
  }

  .pb-quote__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: start;
  }

  /* LEFT — reassurance card */
  .pb-quote__card {
    background: #fff;
    border: 1px solid var(--pb-line);
    border-radius: 18px;
    box-shadow: var(--pb-shadow-md);
    padding: 28px;
  }
  .pb-quote__card h2 {
    font-size: 20px;
    margin: 0 0 14px;
    color: var(--pb-black);
  }
  .pb-quote__points {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .pb-quote__point {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 11px 0;
    border-bottom: 1px solid var(--pb-line);
    font-size: 15px;
    color: var(--pb-ink);
    line-height: 1.4;
  }
  .pb-quote__point:last-child { border-bottom: none; }
  .pb-quote__point::before {
    content: "";
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    margin-top: 6px;
    border-radius: 50%;
    background: var(--pb-orange);
  }
  .pb-quote__links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--pb-line);
  }
  .pb-quote__link {
    font-size: 14px;
    font-weight: 700;
    color: var(--pb-orange);
    text-decoration: none;
  }
  .pb-quote__link:hover { text-decoration: underline; }

  /* RIGHT — form */
  .pb-quote__form-wrap {
    background: #fff;
    border: 1px solid var(--pb-line);
    border-radius: 18px;
    box-shadow: var(--pb-shadow-md);
    padding: 28px;
  }
  .pb-quote__form-wrap h2 {
    font-size: 22px;
    margin: 0 0 20px;
    color: var(--pb-black);
  }
  .pb-quote__field { margin-bottom: 16px; }
  .pb-quote__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .pb-quote__field-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--pb-ink);
    margin-bottom: 6px;
  }
  .pb-quote__req { color: var(--pb-orange); }
  .pb-quote__opt {
    color: var(--pb-muted);
    font-weight: 600;
  }
  .pb-quote__input,
  .pb-quote__textarea {
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid var(--pb-line);
    border-radius: 12px;
    padding: 13px 14px;
    font-family: inherit;
    font-size: 15px;
    color: var(--pb-black);
    transition: border-color 140ms ease, box-shadow 140ms ease;
  }
  .pb-quote__input::placeholder,
  .pb-quote__textarea::placeholder {
    color: var(--pb-muted);
  }
  .pb-quote__input:focus,
  .pb-quote__textarea:focus {
    outline: none;
    border-color: var(--pb-orange);
    box-shadow: 0 0 0 3px rgba(243, 117, 32, 0.22);
  }
  .pb-quote__textarea {
    resize: vertical;
    min-height: 130px;
  }

  /* Honeypot — visually + semantically hidden from real users, present in DOM
     for bots. Not display:none (some bots skip those); pushed off-screen. */
  .pb-quote__hp {
    position: absolute !important;
    left: -9999px !important;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  /* Artwork uploader */
  .pb-quote__files {
    border: 1px dashed var(--pb-line);
    border-radius: 12px;
    padding: 14px;
    background: var(--pb-cream);
  }
  .pb-quote__file-hint {
    font-size: 12px;
    color: var(--pb-muted);
    margin: 8px 0 0;
  }
  .pb-quote__file-list {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
  }
  .pb-quote__file-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--pb-ink);
    padding: 6px 0;
  }
  .pb-quote__file-status {
    font-weight: 700;
    font-size: 12px;
  }
  .pb-quote__file-status.is-ok { color: #0A6929; }
  .pb-quote__file-status.is-err { color: #9A1B1B; }
  .pb-quote__file-status.is-up { color: var(--pb-orange-dark); }

  .pb-quote__submit { margin-top: 6px; }
  .pb-quote__submit[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
  }

  /* Feedback */
  .pb-quote__error {
    background: #FDECEC;
    border: 1px solid #F3C2C2;
    color: #9A1B1B;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
  }
  .pb-quote__error.is-shown { display: block; }

  /* Thank-you state */
  .pb-quote__thanks {
    display: none;
    text-align: center;
    padding: 24px 12px;
  }
  .pb-quote__thanks.is-shown { display: block; }
  .pb-quote__thanks-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #E9F6EC;
    color: #0A6929;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
  }
  .pb-quote__thanks h2 {
    font-size: 24px;
    margin: 0 0 10px;
    color: var(--pb-black);
  }
  .pb-quote__thanks p {
    font-size: 16px;
    color: var(--pb-ink);
    margin: 0 auto;
    max-width: 42ch;
  }

  @media (max-width: 740px) {
    .pb-quote { padding: 56px 0; }
    .pb-quote__grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .pb-quote__row {
      grid-template-columns: 1fr;
    }
  }

/* ── pb-contact.liquid → /pages/contact ─────────────────────────────────── */
.pb-contact {
    background:
      radial-gradient(circle at 82% 18%, rgba(243, 117, 32, 0.15), transparent 52%),
      var(--pb-cream);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  .pb-contact__inner {
    max-width: var(--page-width, 1280px);
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
  }
  .pb-contact__head {
    max-width: 60ch;
    margin-bottom: 48px;
  }
  .pb-contact__head h1 {
    font-size: clamp(36px, 5.5vw, 60px);
    line-height: 1.02;
    margin: 0 0 16px;
    color: var(--pb-black);
  }
  .pb-contact__sub {
    font-size: 18px;
    color: var(--pb-ink);
    margin: 0;
    max-width: 52ch;
  }

  .pb-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: start;
  }

  /* LEFT — info card */
  .pb-contact__card {
    background: #fff;
    border: 1px solid var(--pb-line);
    border-radius: 18px;
    box-shadow: var(--pb-shadow-md);
    padding: 28px;
  }
  .pb-contact__item {
    padding: 14px 0;
    border-bottom: 1px solid var(--pb-line);
  }
  .pb-contact__item:first-child { padding-top: 0; }
  .pb-contact__item:last-of-type { border-bottom: none; }
  .pb-contact__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--pb-orange-dark);
    margin-bottom: 4px;
  }
  .pb-contact__value {
    font-size: 17px;
    font-weight: 700;
    color: var(--pb-black);
    margin: 0;
    line-height: 1.35;
  }
  a.pb-contact__value {
    color: var(--pb-orange-dark);
    text-decoration: none;
  }
  a.pb-contact__value:hover { text-decoration: underline; }

  .pb-contact__links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--pb-line);
  }
  .pb-contact__link {
    font-size: 14px;
    font-weight: 700;
    color: var(--pb-orange);
    text-decoration: none;
  }
  .pb-contact__link:hover { text-decoration: underline; }

  /* RIGHT — form */
  .pb-contact__form-wrap {
    background: #fff;
    border: 1px solid var(--pb-line);
    border-radius: 18px;
    box-shadow: var(--pb-shadow-md);
    padding: 28px;
  }
  .pb-contact__form-wrap h2 {
    font-size: 22px;
    margin: 0 0 20px;
    color: var(--pb-black);
  }
  .pb-contact__field { margin-bottom: 16px; }
  .pb-contact__field-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--pb-ink);
    margin-bottom: 6px;
  }
  .pb-contact__req { color: var(--pb-orange); }
  .pb-contact__input,
  .pb-contact__textarea {
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid var(--pb-line);
    border-radius: 12px;
    padding: 13px 14px;
    font-family: inherit;
    font-size: 15px;
    color: var(--pb-black);
    transition: border-color 140ms ease, box-shadow 140ms ease;
  }
  .pb-contact__input::placeholder,
  .pb-contact__textarea::placeholder {
    color: var(--pb-muted);
  }
  .pb-contact__input:focus,
  .pb-contact__textarea:focus {
    outline: none;
    border-color: var(--pb-orange);
    box-shadow: 0 0 0 3px rgba(243, 117, 32, 0.22);
  }
  .pb-contact__textarea {
    resize: vertical;
    min-height: 130px;
  }
  .pb-contact__form-wrap .button.pb-btn-orange {
    margin-top: 4px;
  }

  /* Form feedback */
  .pb-contact__success {
    background: #E9F6EC;
    border: 1px solid #BCE3C5;
    color: #0A6929;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 600;
  }
  .pb-contact__errors {
    background: #FDECEC;
    border: 1px solid #F3C2C2;
    color: #9A1B1B;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 14px;
  }
  .pb-contact__errors ul {
    margin: 8px 0 0;
    padding-left: 18px;
  }

  @media (max-width: 740px) {
    .pb-contact { padding: 56px 0; }
    .pb-contact__grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }

/* ── pb-teely.liquid → /pages/teely ─────────────────────────────────── */
.pb-teely {
    /* Teely-local brand tokens — used everywhere PrintBere would use orange. */
    --teely: #12B5A5;
    --teely-deep: #0E8C81;
    --teely-soft: #DCF5F0;
  }

  .pb-teely {
    background: var(--pb-cream);
    color: var(--pb-ink);
  }
  .pb-teely__wrap {
    max-width: var(--page-width, 1280px);
    margin: 0 auto;
    padding: 0 32px;
  }

  /* Shared teal pill button (combines Dawn .button base + this modifier). */
  .button.teely-btn,
  a.teely-btn {
    background: var(--teely);
    color: #fff;
    border-color: var(--teely);
    font-weight: 700;
  }
  .button.teely-btn:hover,
  a.teely-btn:hover {
    background: var(--teely-deep);
    border-color: var(--teely-deep);
    color: #fff;
  }

  /* Teal eyebrow pill (overrides the global orange .pb-eyebrow locally). */
  .teely-eyebrow {
    background: rgba(18, 181, 165, 0.16);
    color: var(--teely-deep);
  }

  /* ── 1) HERO — near-black banner w/ teal accents ─────────────── */
  .teely-hero {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(circle at 82% 18%, rgba(18, 181, 165, 0.30), transparent 55%),
      radial-gradient(circle at 12% 92%, rgba(18, 181, 165, 0.16), transparent 50%),
      var(--pb-black);
    color: var(--pb-cream);
    padding: 96px 0 88px;
    text-align: center;
  }
  .teely-hero .teely-eyebrow {
    background: rgba(18, 181, 165, 0.22);
    color: var(--teely);
  }
  .teely-hero__mark {
    display: block;
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin: 6px 0 18px;
    color: #fff;
  }
  .teely-hero__mark .dot { color: var(--teely); }
  .teely-hero h1 {
    font-size: clamp(30px, 5vw, 52px);
    line-height: 1.05;
    margin: 0 auto 18px;
    max-width: 18ch;
    color: #fff;
  }
  .teely-hero p.teely-hero__sub {
    font-size: 18px;
    color: rgba(250, 246, 240, 0.82);
    max-width: 46ch;
    margin: 0 auto;
  }
  .teely-hero__cta {
    margin-top: 34px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .teely-hero__ghost {
    display: inline-block;
    color: var(--teely);
    font-weight: 700;
    text-decoration: none;
    padding: 6px 4px;
  }
  .teely-hero__ghost:hover { text-decoration: underline; }

  /* ── 2) WHAT IT IS — tight intro paragraph ───────────────────── */
  .teely-what {
    padding: 72px 0 8px;
    text-align: center;
  }
  .teely-what p {
    font-size: clamp(20px, 2.6vw, 26px);
    font-weight: 600;
    line-height: 1.4;
    color: var(--pb-black);
    max-width: 28ch;
    margin: 0 auto;
  }
  .teely-what .accent { color: var(--teely-deep); }

  /* ── 3) HOW IT WORKS — teal numbered circles ─────────────────── */
  .teely-how { padding: 72px 0; }
  .teely-how__head {
    text-align: center;
    margin-bottom: 48px;
  }
  .teely-how__head h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin: 0;
    color: var(--pb-black);
  }
  .teely-how__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .teely-step {
    text-align: center;
    padding: 24px 16px;
  }
  .teely-step__num {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--teely);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(18, 181, 165, 0.38);
  }
  .teely-step h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--pb-black);
  }
  .teely-step p {
    font-size: 14px;
    color: var(--pb-muted);
    margin: 0 auto;
    max-width: 30ch;
  }

  /* ── 4) WHY IT'S GREAT — benefits grid ───────────────────────── */
  .teely-why {
    background: var(--pb-cream-2);
    padding: 80px 0;
  }
  .teely-why__head {
    text-align: center;
    margin-bottom: 44px;
  }
  .teely-why__head h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin: 0;
    color: var(--pb-black);
  }
  .teely-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .teely-card {
    background: var(--pb-cream);
    border: 1px solid var(--pb-line);
    border-radius: 14px;
    padding: 26px 22px;
    box-shadow: var(--pb-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .teely-card__tick {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--teely-soft);
    color: var(--teely-deep);
    display: grid;
    place-items: center;
    font-size: 17px;
    font-weight: 800;
    flex-shrink: 0;
  }
  .teely-card p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--pb-black);
  }

  /* ── 5) FOOTER — powered-by + repeat CTA ─────────────────────── */
  .teely-foot {
    background: var(--pb-black);
    color: var(--pb-cream);
    padding: 72px 0;
    text-align: center;
  }
  .teely-foot__powered {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(250, 246, 240, 0.7);
    margin-bottom: 18px;
  }
  .teely-foot__powered b { color: var(--teely); }
  .teely-foot h2 {
    color: #fff;
    font-size: clamp(26px, 4vw, 38px);
    margin: 0 auto 28px;
    max-width: 20ch;
  }

  /* ── Responsive — stack columns under ~740px ─────────────────── */
  @media (max-width: 740px) {
    .teely-how__steps { grid-template-columns: 1fr; gap: 32px; }
    .teely-why__grid { grid-template-columns: 1fr; }
    .teely-hero { padding: 72px 0 64px; }
  }
  @media (min-width: 741px) and (max-width: 980px) {
    .teely-why__grid { grid-template-columns: repeat(2, 1fr); }
  }

/* ── sections/main-page.liquid → /pages/:handle ─────────────────────────
   assets/section-main-page.css verbatim, plus the section's inline padding
   block with templates/page.json's settings resolved (padding_top /
   padding_bottom 28 → `× 0.75 | round` = 21px under 750px, 28px above).
   The per-instance `.section-{{ section.id }}-padding` class is renamed
   `.pb-page-padding` — there is exactly one instance. */
.page-title {
  margin-top: 0;
}

.main-page-title {
  margin-bottom: 3rem;
}

.pb-page-padding {
  padding-top: 21px;
  padding-bottom: 21px;
}

@media screen and (min-width: 750px) {
  .main-page-title {
    margin-bottom: 4rem;
  }

  .pb-page-padding {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

/* ── sections/main-404.liquid → the catch-all ───────────────────────────
   The section's inline <style> verbatim. */
.template-404 .title + * {
  margin-top: 1rem;
}

@media screen and (min-width: 750px) {
  .template-404 .title + * {
    margin-top: 2rem;
  }
}
