/* /photo-landing — the pay-first Indonesian ads funnel (architecture.md §21f).
   Inherits the shop's base (bar/footer/type/form styles from shop/shop.css) and adds
   the landing sections + the fullscreen checkout modal. Everything here is pl-*. */

/* ---------------------------------------------------------------- hero */
.pl-hero { padding: 56px 0 30px; }
.pl-hero .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.pl-hero h1 { font-size: clamp(34px, 5vw, 56px); }
.pl-hero .lede { font-size: 17px; }
.pl-cta-row { display: flex; align-items: center; gap: 16px; margin-top: 26px; flex-wrap: wrap; }
.pl-cta-row .btn-shop-grad { font-size: 16.5px; padding: 16px 30px; }
.pl-cta-sub { font-size: 13px; color: var(--ink-soft); }
.pl-rating { margin-top: 18px; }
.pl-price-row { margin-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; }
.pl-price-chip {
  display: inline-flex; align-items: baseline; gap: 7px;
  border: 1px solid var(--line); background: var(--paper-raised);
  padding: 8px 13px; border-radius: 6px; font-size: 13.5px;
}
.pl-price-chip s { color: var(--ink-soft); font-size: 12px; }
.pl-price-chip b { font-family: var(--font-display); font-weight: 800; font-size: 16px; }
.pl-price-chip .pl-chip-note { color: var(--ink-soft); font-size: 11.5px; }
.pl-price-chip.is-deal { border-color: var(--pink); background: var(--pink-tint); }

/* hero art: the scene photo with the animated strip floating over it */
.pl-hero-art { position: relative; min-height: 420px; }
.pl-hero-scene {
  width: 100%; aspect-ratio: 3 / 4; max-height: 560px;
  object-fit: cover; border-radius: 10px; display: block;
  box-shadow: 0 30px 70px rgba(23, 24, 28, 0.18);
}
.pl-strip {
  position: absolute; left: -34px; bottom: -26px;
  width: 148px; background: #fff; padding: 9px 9px 12px;
  box-shadow: 0 20px 44px rgba(23, 24, 28, 0.24);
  transform: rotate(-5deg);
  animation: pl-float 5.2s ease-in-out infinite;
}
.pl-strip .pl-frame { margin-bottom: 7px; overflow: hidden; background: #EDEFF3; }
.pl-strip .pl-frame img { display: block; width: 100%; aspect-ratio: 4 / 3.2; object-fit: cover; height: auto; }
.pl-strip .pl-serial {
  display: block; text-align: center;
  font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.12em; color: var(--ink-soft);
}
.pl-strip .pl-frame { opacity: 0; animation: pl-develop 0.9s ease forwards; }
.pl-strip .pl-frame:nth-child(1) { animation-delay: 0.25s; }
.pl-strip .pl-frame:nth-child(2) { animation-delay: 0.75s; }
.pl-strip .pl-frame:nth-child(3) { animation-delay: 1.25s; }
.pl-strip .pl-frame:nth-child(4) { animation-delay: 1.75s; }
@keyframes pl-develop { from { opacity: 0; filter: saturate(0.2) brightness(1.35); } to { opacity: 1; filter: none; } }
@keyframes pl-float {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-9px); }
}
@media (prefers-reduced-motion: reduce) {
  .pl-strip, .pl-strip .pl-frame { animation: none; opacity: 1; }
}

/* ---------------------------------------------------------------- sections */
.pl-section { padding: 62px 0; }
.pl-section.is-tint { background: var(--paper-raised); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pl-section h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(24px, 3.4vw, 36px); letter-spacing: -0.02em; line-height: 1.15;
}
.pl-section .pl-sub { margin-top: 10px; color: var(--ink-soft); font-size: 15.5px; max-width: 56ch; }

/* steps */
.pl-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.pl-step {
  position: relative; border: 1px solid var(--line); background: var(--paper-raised);
  border-radius: var(--r-card); padding: 26px 22px 22px;
}
.pl-step-num {
  display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--pink-tint); font-family: var(--font-display); font-weight: 800; font-size: 15px;
}
.pl-step:nth-child(2) .pl-step-num { background: var(--blue-tint); }
.pl-step h3 { margin-top: 14px; font-family: var(--font-display); font-weight: 700; font-size: 17.5px; letter-spacing: -0.01em; }
.pl-step p { margin-top: 7px; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.pl-step .pl-step-badge {
  position: absolute; top: 20px; right: 18px;
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* results band */
.pl-results { display: grid; grid-template-columns: 340px 1fr; gap: 44px; align-items: center; margin-top: 30px; }
.pl-result-copy h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.pl-result-copy p { margin-top: 8px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.65; }
.pl-result-copy ul { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.pl-result-copy li { font-size: 14px; padding-left: 22px; position: relative; }
.pl-result-copy li::before { content: "✓"; position: absolute; left: 0; font-weight: 700; color: var(--pink); }

/* backgrounds showcase */
.pl-bgs { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; margin-top: 30px; }
.pl-bg {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 6px;
  background: #EDEFF3; box-shadow: 0 8px 20px rgba(23, 24, 28, 0.10);
}
.pl-bg img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.pl-bg:hover img { transform: scale(1.06); }
.pl-bg span {
  position: absolute; left: 8px; bottom: 6px; color: #fff; font-size: 11px; font-weight: 700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}

/* samples grid */
.pl-samples { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; margin-top: 30px; }
.pl-sample { aspect-ratio: 3 / 4; overflow: hidden; border-radius: 8px; background: #EDEFF3; box-shadow: 0 12px 28px rgba(23, 24, 28, 0.12); }
.pl-sample img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* FAQ */
.pl-faq { margin-top: 26px; display: grid; gap: 10px; max-width: 760px; }
.pl-faq details { border: 1px solid var(--line); border-radius: var(--r-card); background: var(--paper-raised); }
.pl-faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  padding: 16px 18px; font-weight: 600; font-size: 15px; gap: 14px;
}
.pl-faq summary::-webkit-details-marker { display: none; }
.pl-faq summary::after { content: "+"; font-family: var(--font-mono); font-size: 17px; color: var(--ink-soft); }
.pl-faq details[open] summary::after { content: "–"; }
.pl-faq .pl-a { padding: 0 18px 16px; font-size: 14px; line-height: 1.65; color: var(--ink-soft); }

/* big CTA band */
.pl-band {
  margin-top: 10px; border-radius: 12px; padding: 44px 40px;
  background: linear-gradient(115deg, var(--pink-tint), var(--blue-tint));
  display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
}
.pl-band h2 { font-size: clamp(22px, 3vw, 32px); }
.pl-band p { margin-top: 8px; color: var(--ink-soft); font-size: 14.5px; }

/* sticky mobile CTA */
.pl-sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}
.pl-sticky .pl-sticky-price { font-size: 12.5px; color: var(--ink-soft); line-height: 1.35; }
.pl-sticky .pl-sticky-price b { display: block; color: var(--ink); font-size: 14px; }
.pl-sticky .btn-shop-grad { padding: 12px 20px; font-size: 14.5px; white-space: nowrap; }

/* claim banner (a paid order is waiting for photos) */
.pl-claim-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  margin: 18px auto 0; max-width: 1180px; padding: 14px 18px;
  border: 1.5px solid var(--pink); border-radius: var(--r-card); background: var(--pink-tint);
  font-size: 14px;
}
.pl-claim-banner b { font-weight: 700; }

/* ---------------------------------------------------------------- modal */
.pl-modal {
  position: fixed; inset: 0; z-index: 60; overflow-y: auto;
  background: var(--paper);
  animation: pl-modal-in 0.22s ease;
}
@keyframes pl-modal-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.pl-modal-head {
  position: sticky; top: 0; z-index: 5;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 20px; background: rgba(248, 249, 251, 0.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.pl-modal-title { font-family: var(--font-display); font-weight: 800; font-size: 16.5px; letter-spacing: -0.01em; }
.pl-modal-steps { display: flex; gap: 6px; align-items: center; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; color: var(--ink-soft); }
.pl-modal-steps b { color: var(--ink); }
.pl-modal-close {
  border: 1px solid var(--line); background: var(--paper-raised); border-radius: 50%;
  width: 34px; height: 34px; font-size: 15px; line-height: 1; color: var(--ink-soft);
}
.pl-modal-close:hover { color: var(--ink); border-color: var(--ink); }
.pl-modal-body { max-width: 680px; margin: 0 auto; padding: 26px 20px 120px; }

/* product qty cards */
.pl-products { display: grid; gap: 14px; }
.pl-product {
  display: grid; grid-template-columns: 88px 1fr auto; gap: 16px; align-items: center;
  border: 1px solid var(--line); border-radius: var(--r-card); background: var(--paper-raised);
  padding: 14px 16px;
}
.pl-product.is-on { border-color: var(--ink); }
.pl-product-pic { width: 88px; height: 88px; border-radius: 6px; object-fit: cover; display: block; background: #EDEFF3; }
.pl-product-name { font-weight: 700; font-size: 15.5px; }
.pl-product-size { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em; color: var(--ink-soft); margin-top: 2px; }
.pl-product-price { margin-top: 7px; font-size: 13.5px; display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; }
.pl-product-price s { color: var(--ink-soft); font-size: 12px; }
.pl-product-price b { font-family: var(--font-display); font-weight: 800; font-size: 17px; }
.pl-product-price .pl-unit-note { font-size: 11.5px; color: var(--ink-soft); }
.pl-product-price .pl-unit-note.is-promo { color: #C2337A; font-weight: 700; }

.pl-nudge {
  margin-top: 14px; padding: 12px 14px; border-radius: 6px;
  background: var(--pink-tint); font-size: 13.5px; line-height: 1.5;
}
.pl-nudge.is-ok { background: #E7F6EC; }
.pl-nudge b { font-weight: 700; }

.pl-partner-note { margin-top: 8px; font-size: 12.5px; color: var(--ink-soft); }

/* footer of each modal step */
.pl-modal-foot {
  position: sticky; bottom: 0; margin-top: 26px; padding: 14px 0 6px;
  background: linear-gradient(transparent, var(--paper) 30%);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.pl-total { font-size: 13px; color: var(--ink-soft); }
.pl-total b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--ink); }
.pl-total s { font-size: 12px; }
.pl-modal-foot .btn-shop-grad { padding: 15px 26px; font-size: 15.5px; }
.pl-back-link { background: none; border: none; color: var(--ink-soft); font-size: 13.5px; text-decoration: underline; text-underline-offset: 3px; }

/* email field */
.pl-email-box { margin: 0 0 18px; }
.pl-email-box .fld-label b { color: var(--ink); }
.pl-email-note { font-size: 12px; color: var(--ink-soft); margin-top: 6px; }

/* courier line */
.pl-courier {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-top: 12px; padding: 11px 13px; border: 1px dashed var(--line); border-radius: 6px;
  font-size: 13.5px; background: var(--paper-raised);
}
.pl-courier b { font-weight: 700; }
.pl-courier .pl-courier-free { color: #1E7C46; font-weight: 700; }
.pl-courier select {
  font: inherit; font-size: 13px; padding: 6px 8px; border: 1px solid var(--line); border-radius: 4px;
  background: var(--paper); max-width: 100%;
}
.pl-quote-note { margin-top: 10px; font-size: 12.5px; color: var(--ink-soft); }

/* summary */
.pl-sum { margin-top: 20px; border: 1px solid var(--line); border-radius: var(--r-card); background: var(--paper-raised); padding: 16px 18px; }
.pl-sum-row { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; padding: 4px 0; }
.pl-sum-row.is-soft { color: var(--ink-soft); font-size: 13px; }
.pl-sum-row.is-free { color: #1E7C46; font-weight: 600; }
.pl-sum-row.is-total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 12px; font-weight: 700; font-size: 16px; }
.pl-sum-row.is-total b { font-family: var(--font-display); font-weight: 800; font-size: 19px; }

.pl-err { margin-top: 12px; color: #B4232A; font-size: 13.5px; font-weight: 600; }

/* trust row under the pay button */
.pl-trust { margin-top: 14px; display: flex; gap: 14px; flex-wrap: wrap; font-size: 12px; color: var(--ink-soft); }
.pl-trust span::before { content: "✓ "; color: #1E7C46; font-weight: 700; }

/* ---------------------------------------------------------------- confirm + claim */
.pl-page { max-width: 720px; margin: 0 auto; padding: 60px 20px 80px; }
.pl-check {
  width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center;
  background: var(--pink-tint); font-size: 34px; margin-bottom: 20px;
  animation: pl-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pl-pop { from { transform: scale(0.4); opacity: 0; } to { transform: none; opacity: 1; } }
.pl-page h1 { font-size: clamp(28px, 4vw, 40px); }
.pl-page .lede { font-size: 15.5px; }
.pl-next-steps { margin-top: 28px; display: grid; gap: 12px; }
.pl-next {
  display: flex; gap: 14px; align-items: flex-start;
  border: 1px solid var(--line); border-radius: var(--r-card); background: var(--paper-raised); padding: 16px 18px;
}
.pl-next .pl-step-num { flex: none; }
.pl-next h3 { font-size: 15.5px; font-weight: 700; }
.pl-next p { margin-top: 4px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }
.pl-page .pl-cta-row { margin-top: 26px; }

/* claim: credits + strip picker */
.pl-credits { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.pl-credit {
  border: 1px solid var(--line); border-radius: 6px; background: var(--paper-raised);
  padding: 10px 14px; font-size: 13.5px;
}
.pl-credit b { font-family: var(--font-display); font-weight: 800; font-size: 17px; margin-right: 4px; }
.pl-credit.is-done { opacity: 0.55; }
.pl-claim-strip {
  display: grid; grid-template-columns: 132px 1fr; gap: 20px; align-items: center;
  margin-top: 26px; border: 1px solid var(--line); border-radius: var(--r-card);
  background: var(--paper-raised); padding: 18px;
}
.pl-claim-strip img { width: 132px; display: block; box-shadow: 0 8px 22px rgba(23, 24, 28, 0.2); }
.pl-claim-empty {
  margin-top: 26px; border: 1.5px dashed var(--line); border-radius: var(--r-card);
  padding: 34px 24px; text-align: center;
}
.pl-claim-empty p { color: var(--ink-soft); font-size: 14px; margin: 8px 0 18px; }
.pl-alloc { display: flex; flex-direction: column; gap: 12px; }
.pl-alloc-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 14px; }
.pl-alloc-row .strip-qty { flex: none; }
.pl-upload-link { font-size: 13px; color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; background: none; border: none; }
.pl-redeem-done { margin-top: 20px; padding: 16px 18px; border-radius: var(--r-card); background: #E7F6EC; font-size: 14.5px; line-height: 1.6; }

/* ---------------------------------------------------------------- responsive */
@media (max-width: 900px) {
  .pl-hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .pl-hero-art { max-width: 420px; margin: 0 auto; }
  .pl-steps { grid-template-columns: 1fr; }
  .pl-results { grid-template-columns: 1fr; }
  .pl-sticky { display: flex; }
}
@media (max-width: 560px) {
  .pl-hero { padding-top: 34px; }
  .pl-strip { left: -10px; width: 118px; }
  .pl-product { grid-template-columns: 64px 1fr; }
  .pl-product-pic { width: 64px; height: 64px; }
  .pl-product .strip-qty { grid-column: 1 / -1; justify-content: flex-end; }
  .pl-claim-strip { grid-template-columns: 1fr; }
  .pl-claim-strip img { margin: 0 auto; }
  .pl-band { padding: 30px 22px; }
}
