/* Components — nav, pill button, badges, memo artifact, module cards,
   criteria rows, steps, fit panels, trust row, quote. */

/* --- Nav: wordmark left, mono links center, pill CTA right --- */
.po-navbg { position: fixed; top: 0; left: 0; right: 0; height: 76px; z-index: 39;
  background: rgba(11, 11, 9, 0.92); backdrop-filter: blur(10px); opacity: 0;
  pointer-events: none; transition: opacity var(--t-micro) ease-out;
  border-bottom: 1px solid var(--edge-soft); }
.po-navbg.is-on { opacity: 1; }
.po-nav { position: fixed; inset: 0 0 auto 0; z-index: 40; display: flex;
  align-items: center; justify-content: space-between; gap: 20px; padding: 20px var(--gutter); }
.po-nav__brand { display: flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 500; color: var(--bone); }
.po-nav__brand img { height: 18px; filter: invert(1); }
.po-nav__links { display: flex; gap: 26px; }
.po-nav__links a { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--bone-2); transition: color var(--t-micro) ease-out; }
.po-nav__links:has(a:hover) a { color: var(--mid); }
.po-nav__links:has(a:hover) a:hover { color: var(--bone); }

/* --- Pill button: filled bone on ink; text slides, arrow swaps --- */
.po-btn { position: relative; display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px; border-radius: 999px; border: 1px solid transparent;
  background: var(--bone); color: var(--ink); font-size: 15px; font-weight: 500;
  overflow: hidden; cursor: pointer;
  transition: background var(--t-micro) ease-out, transform var(--t-micro) var(--ease-out3); }
.po-btn:hover { background: #fff; }
.po-btn:active { transform: scale(0.98); }
.po-btn__text { transition: transform var(--t-micro) var(--ease-power); }
.po-btn__arrow { display: block; width: 14px; transition: transform var(--t-micro) var(--ease-power), opacity var(--t-micro) var(--ease-power); }
.po-btn__arrow--left { position: absolute; left: 26px; transform: translateX(-38px); opacity: 0; }
.po-btn:hover .po-btn__text { transform: translateX(24px); }
.po-btn:hover .po-btn__arrow--right { transform: translateX(38px); opacity: 0; }
.po-btn:hover .po-btn__arrow--left { transform: translateX(0); opacity: 1; }
.po-btn--ghost { background: transparent; border-color: var(--edge); color: var(--bone); }
.po-btn--ghost:hover { background: rgba(232, 228, 217, 0.06); }
.po-btn--dark { background: var(--dark); color: var(--paper); }
.po-btn--dark:hover { background: #000; }
.po-btn--small { padding: 10px 18px; font-size: 13px; }

/* --- Status badge: square-cornered, mono — pilot open vs coming soon --- */
.po-badge { display: inline-flex; align-self: flex-start; align-items: center; gap: 8px;
  padding: 5px 10px; border: 1px solid var(--edge); font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--bone-2); }
.po-badge::before { content: ''; width: 5px; height: 5px; background: var(--mid); }
.po-badge--live { color: var(--bone); border-color: rgba(61, 123, 255, 0.45); }
.po-badge--live::before { background: var(--blue); }

/* --- Module cards: image top, badge, title, copy --- */
.po-card { background: var(--coal); border: 1px solid var(--edge-soft); border-radius: 12px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color var(--t-micro) ease-out, background var(--t-micro) ease-out; }
.po-card:hover { border-color: var(--edge); background: var(--coal-2); }
.po-card__media { aspect-ratio: 16 / 9; overflow: hidden; border-bottom: 1px solid var(--edge-soft); }
.po-card__media img { width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.82) brightness(0.86); transition: transform var(--t-move) var(--ease-out3); }
.po-card:hover .po-card__media img { transform: scale(1.03); }
.po-card__body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.po-card__body h3 { margin-top: 4px; }
.po-card__body p { color: var(--bone-2); font-size: 15.5px; line-height: 1.55; max-width: 52ch; }
.po-card__body .mono { color: var(--mid); margin-top: auto; padding-top: 10px; }

/* --- Criteria rows (right column of the sticky split) --- */
.po-crit { display: flex; flex-direction: column; }
.po-crit__item { padding: 30px 0; border-top: 1px solid var(--edge-soft); }
.po-crit__item:last-child { border-bottom: 1px solid var(--edge-soft); }
.po-crit__item h3 { font-size: clamp(18px, 1.7vw, 22px); margin-bottom: 10px; }
.po-crit__item p { color: var(--bone-2); font-size: 15px; line-height: 1.55; max-width: 46ch; margin-bottom: 10px; }
.po-crit__item .mono { color: var(--mid); }

/* --- Steps: numbered, ruled --- */
.po-step { display: grid; grid-template-columns: 90px 1fr; gap: clamp(20px, 4vw, 64px);
  padding: clamp(32px, 5vh, 56px) 0; border-top: 1px solid var(--edge-soft); }
.po-step__num { font-family: var(--mono); font-size: 12px; color: var(--mid); padding-top: 8px; }
.po-step h3 { margin-bottom: 12px; }
.po-step p { color: var(--bone-2); font-size: 15.5px; line-height: 1.6; max-width: 54ch; }

/* --- Fit panels --- */
.po-fit { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); }
.po-fit__col .mono--caps { color: var(--mid); display: block; margin-bottom: 26px; }
.po-fit__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.po-fit__col li { font-size: 16.5px; line-height: 1.45; color: var(--bone-2); padding-left: 22px; position: relative; }
.po-fit__col li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 7px; height: 1px; background: var(--mid); }
.po-fit__col--out li { color: var(--mid); }

/* --- Trust row: three ruled columns, mono labels, no icon theater --- */
.po-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 64px); }
.po-trust__item { border-top: 1px solid var(--edge); padding-top: 22px; }
.po-trust__item .mono--caps { color: var(--mid); display: block; margin-bottom: 14px; }
.po-trust__item p { color: var(--bone-2); font-size: 15px; line-height: 1.6; max-width: 34ch; }

/* --- Quote --- */
.po-quote p { font-family: var(--mono); font-size: 13px; line-height: 1.7; color: var(--bone-2); max-width: 52ch; }
.po-quote cite { display: block; margin-top: 18px; font-family: var(--mono); font-style: normal;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); }

@media (max-width: 880px) {
  .po-nav__links { display: none; }
  .po-fit, .po-trust { grid-template-columns: 1fr; }
  .po-step { grid-template-columns: 1fr; gap: 10px; }
}

/* --- Hero intro: per-word rise, then sub, CTA, memo, stones --- */
@keyframes po-word-in { from { opacity: 0; transform: translateY(0.45em); } }
@keyframes po-fade-in { from { opacity: 0; transform: translateY(16px); } }
@keyframes po-rise-in { from { opacity: 0; transform: translateY(48px); } }
html.js .po-hero__inner h1 .po-w { display: inline-block;
  animation: po-word-in 0.8s var(--ease-out3) both; animation-delay: calc(180ms + 100ms * var(--i)); }
html.js .po-hero__sub { animation: po-fade-in 0.9s var(--ease-out3) both 780ms; }
html.js .po-hero__cta { animation: po-fade-in 0.9s var(--ease-out3) both 930ms; }
html.js .po-hero__tag { animation: po-fade-in 0.9s var(--ease-out3) both 1050ms; }
html.js .po-hero__memo { animation: po-rise-in 1.1s var(--ease-out3) both 1050ms; }
html.js .po-stone { animation: po-fade-in 1.2s var(--ease-out3) both 1250ms; }

@media (prefers-reduced-motion: reduce) {
  html.js .po-hero__inner h1 .po-w, html.js .po-hero__sub, html.js .po-hero__cta,
  html.js .po-hero__tag, html.js .po-hero__memo, html.js .po-stone { animation: none; }
}
