/* Partner program page styles. The page markup lives in partner.html, behaviour in partner.js. */

/* ---------- Base ---------- */
html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: #f4f6f1;
  color: #0d1f18;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html { scrollbar-gutter: stable; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

html:has(.pj-dialog[open]) { overflow: hidden; }

[hidden] { display: none !important; }

::selection { background: #d4f36b; color: #0d1f18; }

#mi-partner-journey {
  --ink: #0d1f18;
  --ink-soft: #2e3f38;
  --muted: #56665e;
  --paper: #f4f6f1;
  --paper-deep: #e8ede4;
  --card: #ffffff;
  --line: #dde4db;
  --line-strong: #c3cec2;
  --green: #019b5f;
  --green-strong: #047a4d;
  --green-deep: #045a39;
  --forest: #072a1e;
  --lime: #d4f36b;
  --lime-bright: #e2f991;
  --lime-soft: #eef8cc;
  --mint: #dcf1e4;
  --lilac: #e9e5fa;
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --font-display: "Bricolage Grotesque", Inter, system-ui, sans-serif;
  --font-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --shadow-soft: 0 1px 2px rgba(13, 31, 24, 0.05), 0 18px 40px -22px rgba(13, 31, 24, 0.28);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --section-space: clamp(80px, 10vw, 136px);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: clip;
}

:where(#mi-partner-journey) *,
:where(#mi-partner-journey) *::before,
:where(#mi-partner-journey) *::after {
  box-sizing: border-box;
}

:where(#mi-partner-journey) :is(h1, h2, h3, h4, p, ul, ol) { margin: 0; }
:where(#mi-partner-journey) :is(ul, ol) { padding: 0; list-style: none; }
:where(#mi-partner-journey) a { color: inherit; text-decoration: none; }
:where(#mi-partner-journey) :is(button, input, select, textarea) { font: inherit; color: inherit; }
:where(#mi-partner-journey) button { background: none; border: 0; padding: 0; cursor: pointer; -webkit-tap-highlight-color: transparent; }
:where(#mi-partner-journey) a { -webkit-tap-highlight-color: transparent; }
:where(#mi-partner-journey) img { display: block; max-width: 100%; height: auto; }
:where(#mi-partner-journey) svg.lucide { width: 18px; height: 18px; flex: none; }
/* Direction arrows point the way the text reads. */
[dir="rtl"] :where(#mi-partner-journey) :is(svg.lucide-arrow-right, svg.lucide-arrow-left, svg.lucide-arrow-up-right) { transform: scaleX(-1); }
:where(#mi-partner-journey) :focus-visible { outline: 3px solid var(--green-strong); outline-offset: 3px; }
:is(.pj-hero-stage, .pj-start-stage, .pj-eq-us, .pj-earn-box, .pj-tile-lang, .pj-form-aside) :focus-visible { outline-color: var(--lime); }
.pj-eq-you :focus-visible { outline-color: var(--ink); }

.pj-wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

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

.pj-skip-link {
  position: absolute;
  inset-inline-start: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff !important;
  font-weight: 600;
}

.pj-skip-link:focus { top: 12px; }

/* ---------- Buttons and links ---------- */
.pj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -0.005em;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), background-color 0.2s, border-color 0.2s, box-shadow 0.2s, color 0.2s;
}

.pj-btn:hover { transform: translateY(-1px); }
.pj-btn:active { transform: translateY(0); }
.pj-btn-sm { min-height: 44px; padding: 0 18px; font-size: 14px; }
.pj-btn-lg { min-height: 56px; padding: 0 26px; font-size: 16px; }

.pj-btn-lime { background: var(--lime); color: var(--ink); }
.pj-btn-lime:hover { background: var(--lime-bright); box-shadow: 0 14px 30px -14px rgba(212, 243, 107, 0.8); }
.pj-btn-ink { background: var(--ink); color: #fff; }
.pj-btn-ink:hover { background: #1c3429; box-shadow: 0 14px 30px -16px rgba(13, 31, 24, 0.7); }
.pj-btn-green { background: var(--green-strong); color: #fff; }
.pj-btn-green:hover { background: var(--green-deep); }
.pj-btn-outline { background: #fff; border-color: var(--line-strong); color: var(--ink); }
.pj-btn-outline:hover { border-color: var(--ink); }
.pj-btn-ghost-light { border-color: rgba(255, 255, 255, 0.3); color: #fff; }
.pj-btn-ghost-light:hover { border-color: rgba(255, 255, 255, 0.7); background: rgba(255, 255, 255, 0.06); }

.pj-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 2px;
  color: inherit;
  font-size: 14.5px;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  text-decoration-color: color-mix(in srgb, currentColor 35%, transparent);
  transition: text-decoration-color 0.2s;
}

.pj-more:hover { text-decoration-color: currentColor; }
.pj-more .lucide { width: 17px; height: 17px; }

.pj-card-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pj-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.3;
  white-space: nowrap;
}

.pj-tag-us { background: var(--mint); color: var(--green-deep); }
.pj-tag-you { background: var(--lime); color: var(--ink); }

/* ---------- Top bar ---------- */
.pj-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 246, 241, 0.86);
  border-bottom: 1px solid transparent;
  -webkit-backdrop-filter: saturate(1.5) blur(14px);
  backdrop-filter: saturate(1.5) blur(14px);
  transition: border-color 0.25s;
}

.pj-topbar.is-scrolled { border-bottom-color: var(--line); }

.pj-topbar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
}

/* Items keep one line; partner.js drops the least important ones when translations do not fit. */
.pj-topbar-inner > * { flex-shrink: 0; }
.pj-topbar.is-fit-1 .pj-topnav { display: none; }
.pj-topbar.is-fit-1 .pj-topbar-actions { margin-inline-start: auto; }
.pj-topbar.is-fit-2 .pj-topbar-link,
.pj-topbar.is-fit-2 .pj-language-name { display: none; }
.pj-topbar.is-fit-2 .pj-language-code { display: inline; }
.pj-topbar.is-fit-3 .pj-logo-copy { display: none; }

.pj-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-align: start;
}

.pj-logo-mark { width: 34px; height: 34px; fill: currentColor; flex: none; }
.pj-logo-copy { display: grid; line-height: 1.1; }
.pj-logo-copy strong { font-family: var(--font-display); font-size: 17px; font-weight: 700; letter-spacing: -0.02em; white-space: nowrap; }
.pj-logo-copy span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-strong); }

.pj-topnav { display: flex; gap: 2px; margin-inline-start: auto; }

.pj-topnav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14.5px;
  font-weight: 550;
  white-space: nowrap;
  transition: background-color 0.2s, color 0.2s;
}

.pj-topnav a:hover { background: rgba(13, 31, 24, 0.06); color: var(--ink); }

.pj-topbar-actions { display: flex; align-items: center; gap: 6px; }

.pj-topbar-link {
  padding: 12px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  white-space: nowrap;
}

.pj-topbar-link:hover { background: rgba(13, 31, 24, 0.06); }

.pj-help-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-inline-start: auto;
  padding: 0 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  font-size: 14.5px;
  font-weight: 600;
  white-space: nowrap;
}

.pj-help-link:hover { border-color: var(--ink); }

/* ---------- Language picker (the homepage's searchable picker, in partner styling) ---------- */
.pj-language { position: relative; display: flex; align-items: center; }

.pj-language-select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

.pj-language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.2s, color 0.2s;
}

.pj-language-trigger:hover,
.pj-language-trigger[aria-expanded="true"] { background: rgba(13, 31, 24, 0.06); color: var(--ink); }
.pj-language-trigger .pj-language-chevron { width: 15px; height: 15px; color: var(--muted); transition: transform 0.2s var(--ease); }
.pj-language-trigger[aria-expanded="true"] .pj-language-chevron { transform: rotate(180deg); }
.pj-language-name { max-width: 128px; overflow: hidden; text-overflow: ellipsis; }
.pj-language-code { display: none; font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.06em; }

.pj-language-popover {
  position: fixed;
  z-index: 60;
  display: flex;
  flex-direction: column;
  width: min(320px, calc(100vw - 24px));
  max-height: min(420px, calc(100svh - 100px));
  padding: 12px 8px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(13, 31, 24, 0.06), 0 24px 48px -20px rgba(13, 31, 24, 0.35);
  font-size: 15px;
  line-height: 1.4;
}

.pj-language-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-block: 0 10px;
  padding-inline: 10px 4px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pj-language-close { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 12px; color: var(--muted); }
.pj-language-close:hover { background: var(--paper); color: var(--ink); }
.pj-language-search { position: relative; flex: none; margin: 0 4px 8px; }

.pj-language-search .lucide {
  position: absolute;
  top: 50%;
  inset-inline-start: 13px;
  width: 17px;
  height: 17px;
  color: var(--muted);
  transform: translateY(-50%);
  pointer-events: none;
}

.pj-language-search input {
  width: 100%;
  min-height: 44px;
  padding-block: 10px;
  padding-inline: 38px 12px;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  background: var(--paper);
  font-size: 16px;
  -webkit-appearance: none;
  appearance: none;
}

.pj-language-search input:focus { border-color: var(--green-strong); outline: none; box-shadow: 0 0 0 4px rgba(4, 122, 77, 0.16); }
.pj-language-search input::placeholder { color: #6b7a73; }

.pj-language-options {
  flex: 1;
  min-height: 0;
  padding: 0 2px;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.pj-language-options [role="option"] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 8px 12px;
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
}

.pj-language-options [role="option"]:hover,
.pj-language-options .is-keyboard-active { background: var(--paper); }
.pj-language-options [aria-selected="true"] { background: var(--mint); }
.pj-language-option-text { display: flex; flex-direction: column; align-items: flex-start; gap: 1px; min-width: 0; }
.pj-language-native { font-size: 15.5px; font-weight: 600; unicode-bidi: isolate; }
.pj-language-english { color: var(--muted); font-size: 12.5px; unicode-bidi: isolate; }
.pj-language-check { min-width: 18px; color: var(--green-strong); font-size: 18px; font-weight: 700; }
.pj-language-empty { padding: 22px 12px; color: var(--muted); font-size: 14.5px; text-align: center; }

/* ---------- Hero ---------- */
.pj-hero { padding: 4px 12px 0; }

.pj-hero-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(60% 70% at 78% 42%, rgba(1, 155, 95, 0.42) 0%, rgba(1, 155, 95, 0) 70%),
    linear-gradient(165deg, #0b3527 0%, #072a1e 55%, #05211a 100%);
  color: #fff;
}

.pj-hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(100deg, transparent 35%, #000 75%);
  mask-image: linear-gradient(100deg, transparent 35%, #000 75%);
}

.pj-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 24px;
  min-height: clamp(600px, calc(100svh - 96px), 760px);
  padding-top: 48px;
}

.pj-hero-copy {
  align-self: center;
  padding-bottom: 64px;
  container-type: inline-size;
}

.pj-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 8px;
  padding-inline: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pj-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(212, 243, 107, 0.2);
}

.pj-hero-title {
  margin-top: 28px;
  font-family: var(--font-display);
  /* The widest line ("Your customers.") is about 6.9em, so 14% of the column keeps every line on one row. */
  font-size: clamp(40px, 6.1vw, 90px);
  font-size: clamp(32px, 14cqi, 90px);
  font-weight: 750;
  font-variation-settings: "opsz" 96;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.pj-hero-line { display: block; }
.pj-hero-title.is-measuring .pj-hero-line { white-space: nowrap; }
.pj-hero-line-lang { color: var(--lime); min-height: 0.98em; }

.pj-lang-word {
  display: inline-block;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), filter 0.3s var(--ease);
}

.pj-lang-word.is-leaving { opacity: 0; transform: translateY(-0.2em); filter: blur(8px); }
.pj-lang-word.is-entering { opacity: 0; transform: translateY(0.25em); filter: blur(8px); transition: none; }

.pj-hero-lede {
  max-width: 33em;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.6;
}

.pj-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.pj-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14.5px;
}

.pj-hero-facts li { display: flex; align-items: center; gap: 6px; }

.pj-hero-facts li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-inline-end: 4px;
  border-radius: 50%;
  background: var(--lime);
}

.pj-hero-facts strong { color: #fff; font-weight: 650; }

.pj-hero-visual {
  position: relative;
  min-height: 520px;
}

.pj-hero-orb {
  position: absolute;
  left: 52%;
  bottom: 12%;
  width: min(84%, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #ecfcae 0%, #d4f36b 46%, #b3dc3e 100%);
  transform: translateX(-50%);
}

.pj-hero-orb::after {
  content: "";
  position: absolute;
  inset: -26px;
  border: 1.5px dashed rgba(212, 243, 107, 0.4);
  border-radius: 50%;
}

.pj-hero-person {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: auto;
  max-width: none;
  height: 96%;
  transform: translateX(-47%);
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.28));
}

.pj-bubble {
  position: absolute;
  top: 7%;
  right: 5%;
  z-index: 3;
  padding: 12px 20px;
  border-radius: 24px 24px 24px 6px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
  box-shadow: 0 22px 44px -18px rgba(0, 0, 0, 0.5);
  transform-origin: 0% 100%;
}

.pj-bubble.is-pop { animation: pj-pop 0.5s var(--ease); }

.pj-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block: 12px;
  padding-inline: 12px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.55);
}

.pj-float-copy strong { display: block; font-size: 15px; font-weight: 700; line-height: 1.25; }
.pj-float-copy small { display: block; color: var(--muted); font-size: 13px; line-height: 1.3; }

.pj-float-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--lime);
  color: var(--ink);
  flex: none;
}

.pj-float-icon.is-green { background: var(--green-strong); color: #fff; }
.pj-float-icon .lucide { width: 21px; height: 21px; }
.pj-float-earn { inset-inline-start: -2%; bottom: 20%; }
.pj-float-trust { inset-inline-end: -1%; top: 42%; }

.pj-avatars { display: flex; flex: none; }

.pj-avatars img {
  width: 38px;
  height: 38px;
  border: 2.5px solid #fff;
  border-radius: 50%;
  background: var(--mint);
}

.pj-avatars img + img { margin-inline-start: -12px; }
.pj-avatars img:nth-child(2) { background: var(--lime-soft); }
.pj-avatars img:nth-child(3) { background: var(--lilac); }

.pj-float-trust .pj-float-copy strong {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ---------- Section heads ---------- */
.pj-section {
  padding-top: var(--section-space);
  scroll-margin-top: calc(96px - var(--section-space));
}

.pj-head {
  max-width: 780px;
  margin-bottom: clamp(32px, 4vw, 52px);
}

.pj-head-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
  gap: 20px 64px;
  align-items: end;
  max-width: none;
}

.pj-index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pj-index span:first-child {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--lime);
  letter-spacing: 0.04em;
}

.pj-section h2,
.pj-start h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.7vw, 66px);
  font-weight: 750;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.pj-head-lede {
  max-width: 36em;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.6;
}

.pj-head-split .pj-head-lede { margin-top: 0; padding-bottom: 6px; }

/* ---------- 01 Offer equation ---------- */
.pj-equation {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.92fr) 44px minmax(0, 1.08fr) 44px minmax(0, 1.12fr);
  gap: 12px;
  align-items: stretch;
}

.pj-eq-op {
  display: grid;
  place-items: center;
  align-self: center;
  justify-self: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.pj-eq-op.is-flowing { animation: pj-op-pulse 0.68s var(--ease); }

.pj-eq-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.pj-eq-card h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 720;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.pj-eq-card > .pj-more { align-self: flex-start; margin-top: auto; }

.pj-eq-us {
  background:
    radial-gradient(90% 60% at 100% 100%, rgba(25, 176, 110, 0.6) 0%, rgba(25, 176, 110, 0) 70%),
    #036b43;
  color: #fff;
}

.pj-eq-us { overflow: hidden; }
.pj-eq-us .pj-card-label { color: rgba(255, 255, 255, 0.86); }
.pj-eq-us > :not(.pj-eq-watermark) { position: relative; z-index: 1; }

.pj-eq-watermark {
  position: absolute;
  inset-inline-end: -48px;
  bottom: -56px;
  width: 210px;
  height: 210px;
  opacity: 0.12;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

.pj-app-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 26px -12px rgba(0, 0, 0, 0.45);
}

.pj-app-icon .pj-logo-mark { width: 42px; height: 42px; }

.pj-ticks {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.pj-ticks li { display: flex; align-items: center; gap: 10px; font-size: 15.5px; font-weight: 550; }
.pj-ticks .lucide { color: var(--lime); }

.pj-eq-you { background: var(--lime); color: var(--ink); }
.pj-eq-you .pj-card-label { color: rgba(13, 31, 24, 0.7); }
.pj-eq-sub { margin-top: -6px; color: rgba(13, 31, 24, 0.8); font-size: 15.5px; }

.pj-extras {
  display: grid;
  gap: 12px;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(13, 31, 24, 0.15);
}

.pj-extras-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pj-extra {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  min-height: 112px;
  padding: 14px 10px 12px;
  border: 1.5px solid transparent;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.25;
  text-align: center;
  transition: background-color 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}

.pj-extra:hover { background: rgba(255, 255, 255, 0.85); transform: translateY(-2px); }
.pj-extra img { width: 52px; height: 52px; object-fit: contain; transition: transform 0.3s var(--ease); }
.pj-extra:hover img { transform: scale(1.08) rotate(-4deg); }

.pj-extra-state {
  position: absolute;
  top: 8px;
  inset-inline-end: 8px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(13, 31, 24, 0.09);
  transition: background-color 0.2s, color 0.2s;
}

.pj-extra-state .lucide { grid-area: 1 / 1; width: 14px; height: 14px; stroke-width: 2.6; transition: opacity 0.2s, transform 0.2s; }
.pj-extra-state [data-icon="check"] { opacity: 0; transform: scale(0.6); }
.pj-extra[aria-pressed="true"] { border-color: var(--ink); background: #fff; }
.pj-extra[aria-pressed="true"] .pj-extra-state { background: var(--ink); color: var(--lime); }
.pj-extra[aria-pressed="true"] .pj-extra-state [data-icon="plus"] { opacity: 0; transform: scale(0.6); }
.pj-extra[aria-pressed="true"] .pj-extra-state [data-icon="check"] { opacity: 1; transform: none; }
.pj-extra.is-just-selected { animation: pj-bump 0.52s var(--ease); }

.pj-eq-result {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.pj-result-main,
.pj-result-side { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.pj-result-side { flex: 1; }
.pj-result-main > .pj-card-label { color: var(--muted); }

.pj-bundle { display: grid; gap: 8px; }

.pj-bundle-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding-block: 8px;
  padding-inline: 8px 10px;
  border-radius: 14px;
  background: var(--paper);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.3;
}

.pj-bundle-row.is-entering { animation: pj-row-in 0.46s var(--ease); }

.pj-bundle-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
}

.pj-bundle-icon.is-us { border: 1px solid var(--line); color: var(--ink); }
.pj-bundle-icon.is-us .pj-logo-mark { width: 24px; height: 24px; }
.pj-bundle-icon.is-you { background: var(--lime); }
.pj-bundle-icon img { width: 28px; height: 28px; object-fit: contain; }

.pj-bundle-empty {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
  color: var(--muted);
  font-size: 14px;
}

.pj-bundle-empty .lucide { color: var(--green-strong); }

.pj-earn-box {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  background: var(--ink);
  color: #fff;
}

.pj-earn-box .pj-card-label { color: var(--lime); }
.pj-earn-box.is-updating { animation: pj-glow 0.68s var(--ease); }

.pj-earn-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  opacity: 0.72;
  transition: opacity 0.3s;
}

.pj-earn-row.is-active { opacity: 1; }
.pj-earn-row.is-highlighted .pj-earn-icon { animation: pj-bump 0.6s var(--ease); }

.pj-earn-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--lime);
  transition: background-color 0.3s, color 0.3s;
}

.pj-earn-row.is-active .pj-earn-icon { background: var(--lime); color: var(--ink); }
.pj-earn-copy strong { display: block; font-size: 15px; font-weight: 650; line-height: 1.3; }
.pj-earn-copy small { display: block; color: rgba(255, 255, 255, 0.72); font-size: 13.5px; line-height: 1.35; }

.pj-eq-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 18px;
  margin-top: auto;
  padding-top: 4px;
}

/* ---------- 02 Earnings flow ---------- */
.pj-flow-card {
  position: relative;
  padding: 24px clamp(20px, 4vw, 48px) 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.pj-flow-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
}

.pj-seg {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.pj-seg-btn {
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14.5px;
  font-weight: 650;
  transition: background-color 0.2s, color 0.2s;
}

.pj-seg-btn:hover { color: var(--ink); }
.pj-seg-btn[aria-selected="true"] { background: var(--ink); color: #fff; }

.pj-flow-panel {
  position: relative;
  margin-top: 44px;
  border-radius: 12px;
}

.pj-flow-panel:focus-visible { outline-offset: 12px; }

.pj-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pj-flow li {
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.pj-flow-node {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--paper);
  color: var(--ink);
}

.pj-flow-node .lucide { width: 32px; height: 32px; stroke-width: 1.8; }
.pj-flow-node.is-us { background: #fff; }
.pj-flow-node.is-us .pj-logo-mark { width: 44px; height: 44px; }
.pj-flow-node.is-you { border-color: transparent; background: var(--lime); }
.pj-flow li strong { font-family: var(--font-display); font-size: 22px; font-weight: 720; letter-spacing: -0.025em; line-height: 1.15; }
.pj-flow li small { max-width: 22em; color: var(--muted); font-size: 15px; line-height: 1.45; }

.pj-flow-track {
  position: absolute;
  top: 40px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  z-index: 0;
  height: 2px;
  background-image: linear-gradient(90deg, var(--line-strong) 55%, transparent 0);
  background-size: 12px 2px;
}

.pj-token {
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-block-start: -17px;
  margin-inline-start: -17px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 0 0 6px rgba(212, 243, 107, 0.32);
  opacity: 0;
}

.pj-token .lucide { width: 17px; height: 17px; stroke-width: 2.4; }
.pj-token-key { background: var(--green-strong); color: #fff; box-shadow: 0 0 0 6px rgba(4, 122, 77, 0.18); }

.pj-flow-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14.5px;
  text-align: center;
}

.pj-promises {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.pj-promises li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: var(--paper-deep);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.pj-promise-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  color: var(--green-strong);
  flex: none;
}

/* ---------- 03 Bento ---------- */
.pj-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.pj-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
}

.pj-tile h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 720;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.pj-tile p { color: var(--ink-soft); font-size: 15.5px; }

.pj-tile-link {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  font-size: 14.5px;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
}

.pj-tile-phone {
  grid-column: span 4;
  grid-row: span 2;
  padding-bottom: 0;
  border-color: transparent;
  background: var(--mint);
}

.pj-tile-phone h3 { max-width: 12em; }

.pj-phone-shot {
  width: 92%;
  margin: auto auto 0;
  transform: translateY(10px);
  transition: transform 0.5s var(--ease);
}

.pj-tile-phone:hover .pj-phone-shot { transform: translateY(0); }

.pj-tile-lang {
  grid-column: span 5;
  border-color: transparent;
  background: var(--ink);
  color: #fff;
}

.pj-tile-lang p { color: rgba(255, 255, 255, 0.74); }
.pj-tile-lang { container-type: inline-size; }

.pj-tile .pj-tile-greeting {
  min-height: 1.05em;
  text-align: left;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: clamp(46px, 4.8vw, 68px);
  /* The widest greeting, Здравствуйте!, is about 6.8 em wide, so this keeps every language inside the tile. */
  font-size: clamp(32px, 14cqi, 68px);
  font-weight: 750;
  line-height: 1.05;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.pj-tile-greeting.is-pop { animation: pj-pop 0.5s var(--ease); }
.pj-tile-accent { color: var(--lime); }

.pj-lang-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
}

.pj-lang-cloud li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.3;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.pj-lang-cloud li.is-active { border-color: var(--lime); background: var(--lime); color: var(--ink); }

.pj-tile-users { grid-column: span 3; }

.pj-tile .pj-tile-bignum {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(44px, 4.4vw, 60px);
  font-weight: 780;
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}

.pj-tile-users h3 { margin-top: 4px; }

.pj-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
}

.pj-platforms li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--paper);
  font-size: 13px;
  font-weight: 600;
}

.pj-platforms .lucide { width: 15px; height: 15px; }

.pj-tile-support { grid-column: span 5; }
.pj-chat { display: grid; gap: 8px; margin: 6px 0 2px; }

.pj-tile .pj-chat-q {
  justify-self: start;
  max-width: 92%;
  padding: 10px 14px;
  border-radius: 18px;
  border-end-start-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-size: 14.5px;
}

.pj-tile .pj-chat-a {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 14px;
}

.pj-tile-support .pj-more { margin-top: auto; align-self: flex-start; }

.pj-tile-price {
  grid-column: span 3;
  gap: 8px;
  border: 2px solid var(--ink);
}

.pj-tile .pj-shelf-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1.5px dashed var(--ink);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pj-tile .pj-shelf-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 6px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(46px, 4.4vw, 58px);
  font-weight: 780;
  line-height: 1;
  letter-spacing: -0.05em;
}

.pj-shelf-price small {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.pj-tile .pj-shelf-meta { color: var(--muted); font-size: 14px; }

.pj-barcode {
  width: 100%;
  height: 42px;
  margin-top: auto;
  fill: var(--ink);
}

.pj-tile-labels {
  grid-column: span 6;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  border-color: transparent;
  background: var(--lilac);
}

.pj-labels-copy { display: grid; flex: 1; gap: 10px; min-width: 0; }
.pj-labels-visual { position: relative; flex: none; width: 224px; height: 190px; }

.pj-labels-printer {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 190px;
  transition: transform 0.45s var(--ease);
}

.pj-tile-labels:hover .pj-labels-printer { transform: translateY(-4px) rotate(-2deg); }

.pj-label-mock {
  position: absolute;
  inset-inline-start: 0;
  bottom: 6px;
  display: grid;
  gap: 4px;
  width: 140px;
  padding: 10px 12px 8px;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 16px 30px -16px rgba(13, 31, 24, 0.55);
  transform: rotate(-6deg);
}

.pj-label-mock strong { font-size: 13px; font-weight: 700; line-height: 1.2; }
.pj-label-barcode { width: 100%; height: 30px; fill: var(--ink); }
.pj-label-mock span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-align: center; }

.pj-tile-kit {
  grid-column: span 6;
  gap: 18px;
  border-color: transparent;
  background: var(--paper-deep);
}

.pj-kit-head { display: grid; gap: 4px; }
.pj-kit-head h3 { font-size: 24px; }
.pj-kit-head p { font-size: 15px; }

.pj-kit-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

.pj-kit-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding-block: 0;
  padding-inline: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 14.5px;
  font-weight: 600;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}

.pj-kit-links a:hover { border-color: var(--ink); transform: translateY(-1px); }

.pj-kit-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--green-strong);
}

.pj-kit-icon .lucide { width: 17px; height: 17px; }

/* ---------- 04 People ---------- */
.pj-people {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 64px;
}

.pj-person {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 28px 28px;
  border-radius: var(--radius-lg);
}

.pj-person-mint { background: var(--mint); }
.pj-person-lime { background: var(--lime-soft); }
.pj-person-lilac { background: var(--lilac); }

.pj-person-img {
  width: 100%;
  height: 290px;
  margin-top: -64px;
  object-fit: contain;
  object-position: 50% 100%;
  transform-origin: 50% 100%;
  transition: transform 0.45s var(--ease);
}

.pj-person:hover .pj-person-img { transform: translateY(-6px) scale(1.03); }

.pj-person-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-top: 22px;
  border-top: 1.5px solid rgba(13, 31, 24, 0.14);
}

.pj-person h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 720;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.pj-person p { color: var(--ink-soft); font-size: 15.5px; }

.pj-person-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  margin-top: auto;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14.5px;
  font-weight: 650;
  transition: background-color 0.2s, transform 0.2s var(--ease);
}

.pj-person-cta:hover { background: #1c3429; transform: translateX(2px); }
[dir="rtl"] .pj-person-cta:hover { transform: translateX(-2px); }

/* ---------- Start band ---------- */
.pj-start { padding: var(--section-space) 12px 0; }

.pj-start-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(44px, 6vw, 88px) 0;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(50% 80% at 90% 10%, rgba(1, 155, 95, 0.4) 0%, rgba(1, 155, 95, 0) 70%),
    linear-gradient(160deg, #0b3527 0%, #06231a 100%);
  color: #fff;
}

.pj-start-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(260deg, #000 0%, transparent 60%);
  mask-image: linear-gradient(260deg, #000 0%, transparent 60%);
}

.pj-start-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 40px 72px;
  align-items: center;
}

.pj-start h2 { font-size: clamp(40px, 5.2vw, 76px); }
.pj-start-copy > p { margin-top: 18px; color: rgba(255, 255, 255, 0.76); font-size: 18px; }

.pj-start-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.pj-whatsapp-icon { width: 18px; height: 18px; fill: currentColor; flex: none; }

.pj-steps { display: grid; gap: 12px; }

.pj-steps li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 2px;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
}

.pj-step-no {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 15px;
}

.pj-steps strong { font-size: 18px; font-weight: 700; line-height: 1.3; }
.pj-steps li > span:last-child { color: rgba(255, 255, 255, 0.74); font-size: 15px; line-height: 1.45; }

/* ---------- 05 FAQ ---------- */
.pj-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 40px 80px;
  align-items: start;
}

.pj-faq-side { position: sticky; top: 104px; }

.pj-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }

.pj-chip {
  min-height: 42px;
  padding: 0 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.pj-chip:hover { border-color: var(--ink); color: var(--ink); }
.pj-chip[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: #fff; }

.pj-faq-help { margin-top: 28px; color: var(--muted); font-size: 15px; line-height: 1.6; }

.pj-faq-help a {
  color: var(--green-strong);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.pj-email-address { color: var(--ink); font-weight: 600; overflow-wrap: anywhere; }

.pj-faq-list { display: grid; gap: 10px; }

.pj-faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pj-faq-list details[open] { border-color: var(--line-strong); box-shadow: var(--shadow-soft); }

.pj-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding-block: 16px;
  padding-inline: 22px 20px;
  border-radius: var(--radius-md);
  font-size: 16.5px;
  font-weight: 650;
  letter-spacing: -0.01em;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

.pj-faq-list summary::-webkit-details-marker { display: none; }

.pj-faq-list summary::after {
  content: "";
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d1f18' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 14px no-repeat;
  transition: transform 0.25s var(--ease), background-color 0.2s;
}

.pj-faq-list summary:hover::after { background-color: var(--paper-deep); }
.pj-faq-list details[open] summary::after { background-color: var(--lime); transform: rotate(45deg); }

.pj-faq-list details p {
  max-width: 62ch;
  padding: 0 22px 22px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
}

/* ---------- Footer ---------- */
.pj-footer { padding: var(--section-space) 0 40px; }

.pj-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.pj-footer .pj-logo-mark { width: 28px; height: 28px; }
.pj-footer-links { display: flex; flex-wrap: wrap; gap: 0 20px; font-size: 14.5px; }
.pj-footer-links a { display: inline-flex; align-items: center; min-height: 44px; color: var(--ink-soft); }
.pj-footer-links a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.pj-footer-copy { color: var(--muted); font-size: 14px; }

/* Plain language links: they work without JavaScript and for crawlers. */
.pj-language-links { margin-top: 8px; color: var(--muted); font-size: 14px; }
.pj-language-links summary { display: inline-flex; align-items: center; gap: 9px; min-height: 44px; cursor: pointer; list-style: none; }
.pj-language-links summary::-webkit-details-marker { display: none; }

.pj-language-links summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s var(--ease);
}

.pj-language-links[open] summary::after { transform: translateY(1px) rotate(-135deg); }
.pj-language-links nav { display: flex; flex-wrap: wrap; gap: 0 18px; }
.pj-language-links a { display: inline-flex; align-items: center; min-height: 40px; color: var(--ink-soft); }
.pj-language-links a:hover,
.pj-language-links a[aria-current="page"] { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.pj-language-links a[aria-current="page"] { font-weight: 650; }

/* ---------- Dialogs ---------- */
.pj-dialog {
  width: min(640px, calc(100vw - 32px));
  max-width: none;
  max-height: 88vh;
  max-height: min(88dvh, 820px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--card);
  color: var(--ink);
  box-shadow: 0 40px 100px -24px rgba(4, 22, 15, 0.55);
}

.pj-dialog::backdrop {
  background: rgba(5, 25, 18, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.pj-dialog[open] { animation: pj-dialog-in 0.32s var(--ease); }
.pj-dialog[open]::backdrop { animation: pj-fade-in 0.32s ease; }

.pj-dialog-inner {
  display: flex;
  flex-direction: column;
  max-height: 88vh;
  max-height: min(88dvh, 820px);
}

.pj-dialog-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-block: 22px 18px;
  padding-inline: 28px 22px;
  border-bottom: 1px solid var(--line);
}

.pj-dialog-head h2 {
  flex: 1;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 740;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.pj-dialog-badge {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  flex: none;
}

.pj-dialog-badge.is-us { border: 1px solid var(--line); background: #fff; color: var(--ink); }
.pj-dialog-badge.is-us .pj-logo-mark { width: 30px; height: 30px; }
.pj-dialog-badge.is-you { background: var(--lime); color: var(--ink); }
.pj-dialog-badge .lucide { width: 22px; height: 22px; }

.pj-dialog-close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  flex: none;
  transition: background-color 0.2s;
}

.pj-dialog-close:hover { background: var(--paper-deep); }

.pj-dialog-body {
  display: grid;
  gap: 18px;
  min-height: 0;
  padding: 22px 28px 24px;
  overflow: auto;
  overscroll-behavior: contain;
}

.pj-dialog-body:focus-visible { outline-offset: -3px; }
.pj-dialog-lede { color: var(--ink-soft); font-size: 16.5px; line-height: 1.6; }

.pj-dialog-list { display: grid; }

.pj-dialog-list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}

.pj-dialog-list li:first-child { padding-top: 0; }
.pj-dialog-list li:last-child { padding-bottom: 0; border-bottom: 0; }

.pj-dl-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--paper);
  color: var(--green-strong);
}

.pj-dialog-list strong { display: block; font-size: 16px; font-weight: 680; line-height: 1.35; }
.pj-dialog-list li > span:last-child > span { display: block; margin-top: 2px; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }

.pj-dialog-note {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--lime-soft);
  font-size: 14.5px;
  line-height: 1.55;
}

.pj-dialog-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 28px 22px;
  border-top: 1px solid var(--line);
}

/* ---------- Enquiry screens ---------- */
.pj-flow-page { min-height: 100vh; }

.pj-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  gap: 32px 56px;
  align-items: start;
  padding-top: 40px;
  padding-bottom: 96px;
}

.pj-review-layout { max-width: 860px; padding-top: 40px; padding-bottom: 96px; }

.pj-flow-kicker {
  color: var(--green-strong);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pj-form-title {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 750;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.pj-form-title:focus { outline: none; }
.pj-form-intro { max-width: 40em; margin-top: 16px; color: var(--ink-soft); font-size: 17px; line-height: 1.6; }

.pj-form-card {
  margin-top: 28px;
  padding: clamp(20px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.pj-form-card h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 720;
  letter-spacing: -0.03em;
}

.pj-card-intro { margin-top: 6px; color: var(--muted); font-size: 15px; }

.pj-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  margin-top: 24px;
}

.pj-field { display: grid; align-content: start; gap: 8px; }
.pj-field-full { grid-column: 1 / -1; }
.pj-field label,
.pj-group-label { color: var(--ink); font-size: 14px; font-weight: 600; line-height: 1.4; }
.pj-required { color: #b3261e; }

.pj-input,
.pj-select,
.pj-textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: 14px;
  background: #fff;
  font-size: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pj-input::placeholder,
.pj-textarea::placeholder { color: #6b7a73; }

.pj-input:focus,
.pj-select:focus,
.pj-textarea:focus {
  border-color: var(--green-strong);
  outline: none;
  box-shadow: 0 0 0 4px rgba(4, 122, 77, 0.16);
}

.pj-input:user-invalid { border-color: #b3261e; }

.pj-select {
  padding-inline-end: 42px;
  -webkit-appearance: none;
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d1f18' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 14px center / 18px no-repeat;
}

[dir="rtl"] .pj-select { background-position: left 14px center; }

.pj-textarea { min-height: 128px; line-height: 1.55; resize: vertical; }

.pj-message {
  min-height: 320px;
  margin-top: 10px;
  background: var(--paper);
  font-size: 15px;
  line-height: 1.7;
}

.pj-form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.pj-send-options { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pj-field-note { margin-top: 14px; color: var(--muted); font-size: 14.5px; }
.pj-privacy-note { margin-top: 18px; color: var(--muted); font-size: 14.5px; }
.pj-review-back { margin-top: 24px; }

.pj-form-aside {
  position: sticky;
  top: 104px;
  overflow: hidden;
  padding: 0 26px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #0b3527 0%, #06231a 100%);
  color: #fff;
}

.pj-form-aside-visual {
  position: relative;
  height: 210px;
  margin: 0 -26px 22px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pj-form-aside-orb {
  position: absolute;
  left: 50%;
  top: 34px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #ecfcae 0%, #d4f36b 46%, #b3dc3e 100%);
  transform: translateX(-50%);
}

.pj-form-aside-visual img {
  position: absolute;
  left: 50%;
  top: 12px;
  width: 270px;
  max-width: none;
  transform: translateX(-46%);
}

.pj-form-aside .pj-card-label { color: var(--lime); }
.pj-next-steps { display: grid; gap: 16px; margin-top: 16px; counter-reset: pj-next; }

.pj-next-steps li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  column-gap: 12px;
  counter-increment: pj-next;
}

.pj-next-steps li::before {
  content: counter(pj-next);
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(212, 243, 107, 0.16);
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 13px;
}

.pj-next-steps strong { font-size: 15.5px; font-weight: 650; line-height: 1.35; }
.pj-next-steps span { color: rgba(255, 255, 255, 0.72); font-size: 14px; line-height: 1.45; }

/* ---------- Motion ---------- */
@keyframes pj-rise { from { opacity: 0; transform: translateY(22px); } }
@keyframes pj-fade-in { from { opacity: 0; } }
@keyframes pj-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pj-spin { to { transform: rotate(360deg); } }
@keyframes pj-pop { 0% { opacity: 0; transform: scale(0.72); } 60% { opacity: 1; transform: scale(1.06); } 100% { transform: scale(1); } }
@keyframes pj-bump { 0%, 100% { transform: scale(1); } 40% { transform: scale(1.06); } }
@keyframes pj-row-in { from { opacity: 0; transform: translateY(-6px) scale(0.98); } }
@keyframes pj-op-pulse { 0%, 100% { transform: scale(1); } 40% { transform: scale(1.2); background: var(--green); color: #fff; } }
@keyframes pj-glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(212, 243, 107, 0); } 40% { box-shadow: 0 0 0 6px rgba(212, 243, 107, 0.55); } }
@keyframes pj-dialog-in { from { opacity: 0; transform: translateY(18px) scale(0.98); } }
@keyframes pj-sheet-in { from { transform: translateY(100%); } }

@keyframes pj-travel-full {
  0% { inset-inline-start: 0; opacity: 0; }
  8% { opacity: 1; }
  42%, 56% { inset-inline-start: 50%; }
  90% { opacity: 1; }
  100% { inset-inline-start: 100%; opacity: 0; }
}

@keyframes pj-travel-first-half {
  0% { inset-inline-start: 0; opacity: 0; }
  8% { opacity: 1; }
  42% { inset-inline-start: 50%; opacity: 1; }
  48%, 100% { inset-inline-start: 50%; opacity: 0; }
}

@keyframes pj-travel-second-half {
  0%, 50% { inset-inline-start: 50%; opacity: 0; }
  58% { opacity: 1; }
  90% { opacity: 1; }
  100% { inset-inline-start: 100%; opacity: 0; }
}

/* Scripts other than Latin, Greek and Cyrillic. Arabic letters join, so they keep normal
   tracking; Arabic, Urdu, Hindi and Thai letters are taller, so display lines get more room;
   Japanese headings break between phrases rather than anywhere. */
#mi-partner-journey :is(:lang(ar), :lang(ur)) { letter-spacing: 0 !important; }
/* JetBrains Mono has Latin, Greek and Cyrillic only; other scripts set the small labels in the body font. */
#mi-partner-journey:is(:lang(ar), :lang(ur), :lang(he), :lang(hi), :lang(th), :lang(ja)) { --font-mono: var(--font-body); }
#mi-partner-journey :is(:lang(ar), :lang(ur), :lang(hi), :lang(th)):is(.pj-hero-title, .pj-hero-title *, .pj-section h2, .pj-start h2, .pj-eq-card h3, .pj-tile h3, .pj-tile-greeting, .pj-form-title) { line-height: 1.2; }
#mi-partner-journey :lang(ja):is(h1, h2, h3) { word-break: auto-phrase; }
/* Greetings change language (and direction) as they rotate, so they are placed physically:
   the speech bubble stays by the character's head, which is not mirrored. */
:root[dir="rtl"] .pj-tile .pj-tile-greeting { text-align: right; }
/* Keep "15,000+" and "7.50 €" in reading order inside right-to-left text. */
[dir="rtl"] :is(.pj-float-copy strong, .pj-tile-bignum > [aria-hidden], .pj-shelf-price > span) { direction: ltr; unicode-bidi: isolate; }

@media (prefers-reduced-motion: no-preference) {
  .pj-hero-copy > * { animation: pj-rise 0.8s var(--ease) both; }
  .pj-hero-copy > :nth-child(2) { animation-delay: 0.06s; }
  .pj-hero-copy > :nth-child(3) { animation-delay: 0.14s; }
  .pj-hero-copy > :nth-child(4) { animation-delay: 0.2s; }
  .pj-hero-copy > :nth-child(5) { animation-delay: 0.26s; }
  .pj-hero-visual { animation: pj-rise 1s var(--ease) 0.1s both; }
  .pj-hero-orb::after { animation: pj-spin 60s linear infinite; }
  .pj-float { animation: pj-float 7s ease-in-out infinite; }
  .pj-float-trust { animation-delay: -3.5s; }
  .pj-token-coin.is-full { animation: pj-travel-full 3.8s var(--ease) infinite; }
  .pj-token-coin.is-half { animation: pj-travel-first-half 4.2s var(--ease) infinite; }
  .pj-token-key { animation: pj-travel-second-half 4.2s var(--ease) infinite; }

  .pj-reveal-on [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }

  .pj-reveal-on [data-reveal].is-revealed { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .pj-token-coin.is-full,
  .pj-token-coin.is-half { inset-inline-start: 50%; opacity: 1; }

  #mi-partner-journey *,
  #mi-partner-journey *::before,
  #mi-partner-journey *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .pj-equation { grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1.15fr); }
  #pj-offer-transfer { grid-column: 1 / -1; }

  .pj-eq-result {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
  }
}

@media (max-width: 1100px) {
  .pj-topnav { display: none; }
  .pj-topbar-actions { margin-inline-start: auto; }
  .pj-bento { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .pj-tile-phone { grid-column: span 3; grid-row: span 2; }
  .pj-tile-lang,
  .pj-tile-users,
  .pj-tile-support,
  .pj-tile-price { grid-column: span 3; }
}

@media (max-width: 960px) {
  .pj-head-split { grid-template-columns: 1fr; }
  .pj-head-split .pj-head-lede { padding-bottom: 0; }
  .pj-start-inner { grid-template-columns: 1fr; }
  .pj-faq-layout { grid-template-columns: 1fr; }
  .pj-faq-side { position: static; }
  .pj-form-layout { grid-template-columns: 1fr; }
  .pj-form-aside { position: static; max-width: 560px; }
  .pj-form-aside-visual { display: none; }
  .pj-form-aside { padding-top: 26px; }
}

@media (max-width: 860px) {
  .pj-hero-grid { grid-template-columns: 1fr; min-height: 0; padding-top: 44px; }
  .pj-hero-copy { padding-bottom: 8px; }
  .pj-hero-title { font-size: clamp(40px, 9.2vw, 78px); font-size: clamp(32px, 14cqi, 78px); }
  .pj-hero-visual { width: 100%; max-width: 480px; min-height: 460px; justify-self: center; }
  .pj-promises { grid-template-columns: 1fr; }

  .pj-people { grid-template-columns: 1fr; gap: 72px; padding-top: 56px; }
  .pj-person { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr); align-items: end; gap: 24px; padding: 0 28px 0 16px; }
  .pj-person-img { height: 280px; margin-top: -56px; }
  .pj-person-body { padding: 28px 0; border-top: 0; }
}

@media (max-width: 760px) {
  .pj-equation { grid-template-columns: 1fr; gap: 10px; }
  #pj-offer-transfer { grid-column: auto; }
  .pj-eq-result { display: flex; grid-column: auto; }

  .pj-flow { grid-template-columns: 1fr; gap: 0; }
  .pj-flow-panel { margin-top: 32px; }
  .pj-flow-track { display: none; }

  .pj-flow li {
    position: relative;
    grid-template-columns: 64px minmax(0, 1fr);
    justify-items: start;
    column-gap: 18px;
    row-gap: 2px;
    padding-bottom: 28px;
    text-align: start;
  }

  .pj-flow li:last-child { padding-bottom: 0; }

  .pj-flow li:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 66px;
    bottom: 2px;
    inset-inline-start: 31px;
    width: 2px;
    background-image: linear-gradient(180deg, var(--line-strong) 55%, transparent 0);
    background-size: 2px 12px;
  }

  .pj-flow-node { grid-row: span 2; width: 64px; height: 64px; margin-bottom: 0; border-radius: 20px; }
  .pj-flow-node .lucide { width: 26px; height: 26px; }
  .pj-flow-node.is-us .pj-logo-mark { width: 36px; height: 36px; }
  .pj-flow li strong { align-self: end; font-size: 20px; }
  .pj-flow li small { align-self: start; }
  .pj-flow-note { justify-content: flex-start; text-align: start; }
}

@media (max-width: 700px) {
  .pj-bento { grid-template-columns: 1fr; gap: 12px; }
  .pj-tile-phone,
  .pj-tile-lang,
  .pj-tile-users,
  .pj-tile-support,
  .pj-tile-price,
  .pj-tile-labels,
  .pj-tile-kit { grid-column: auto; grid-row: auto; }
  .pj-phone-shot { width: min(92%, 340px); }
  .pj-tile-labels { flex-direction: column; align-items: stretch; }
  .pj-labels-visual { align-self: center; width: min(100%, 260px); }
  .pj-kit-links { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .pj-wrap { padding: 0 16px; }
  .pj-topbar-inner { min-height: 64px; gap: 12px; }
  .pj-topbar-link { display: none; }
  .pj-language-trigger { gap: 5px; padding: 0 10px; }
  .pj-language-name { display: none; }
  .pj-language-code { display: inline; }
  .pj-logo-mark { width: 30px; height: 30px; }
  .pj-logo-copy strong { font-size: 16px; }

  .pj-hero { padding: 0 8px; }
  .pj-hero-stage,
  .pj-start-stage { border-radius: 28px; }
  .pj-hero-grid { padding-top: 32px; }
  .pj-hero-title { margin-top: 22px; font-size: clamp(32px, calc(14vw - 7px), 58px); font-size: clamp(32px, 14cqi, 58px); }
  .pj-hero-lede { margin-top: 20px; }
  .pj-hero-actions { margin-top: 28px; }
  .pj-hero-actions .pj-btn { flex: 1 1 100%; }
  .pj-hero-facts { gap: 8px 18px; margin-top: 28px; font-size: 13.5px; }
  .pj-hero-visual { min-height: 400px; }
  .pj-bubble { top: 4%; right: 2%; padding: 10px 16px; font-size: 19px; }
  .pj-float { gap: 10px; padding-block: 9px; padding-inline: 9px 14px; border-radius: 16px; }
  .pj-float-icon { width: 34px; height: 34px; border-radius: 11px; }
  .pj-float-icon .lucide { width: 18px; height: 18px; }
  .pj-float-copy strong { font-size: 13.5px; }
  .pj-float-copy small { font-size: 12px; }
  .pj-float-earn { inset-inline-start: 0; bottom: 14%; }
  .pj-float-trust { inset-inline-end: 0; top: 44%; }
  .pj-avatars img { width: 30px; height: 30px; border-width: 2px; }
  .pj-avatars img + img { margin-inline-start: -10px; }
  .pj-float-trust .pj-float-copy strong { font-size: 17px; }

  .pj-head-lede { font-size: 17px; }
  .pj-eq-card { padding: 22px; }
  .pj-tile { padding: 22px; }
  .pj-flow-card { padding: 20px 18px 28px; }
  .pj-seg { display: flex; width: 100%; }
  .pj-seg-btn { flex: 1; padding: 0 12px; }

  /* The three profiles become a swipeable row. */
  .pj-people {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 84%);
    gap: 12px;
    margin: 0 -16px;
    padding: 60px 16px 4px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 16px;
    scrollbar-width: none;
  }

  .pj-people::-webkit-scrollbar { display: none; }
  .pj-person { display: flex; flex-direction: column; gap: 0; padding: 0 20px 22px; scroll-snap-align: start; }
  .pj-person-img { height: 220px; margin-top: -52px; }
  .pj-person-body { padding: 18px 0 0; border-top: 1.5px solid rgba(13, 31, 24, 0.14); }
  .pj-person h3 { font-size: 21px; }
  .pj-person p { font-size: 15px; }

  .pj-start { padding-left: 8px; padding-right: 8px; }
  .pj-start-actions .pj-btn { flex: 1 1 100%; }
  .pj-steps li { padding: 16px; grid-template-columns: 44px minmax(0, 1fr); }
  .pj-step-no { width: 44px; height: 44px; border-radius: 14px; }

  .pj-faq-list summary { padding-block: 14px; padding-inline: 18px 16px; font-size: 16px; }
  .pj-faq-list details p { padding: 0 18px 18px; }

  .pj-dialog {
    width: 100%;
    max-height: 90dvh;
    margin: auto 0 0;
    border-radius: 26px 26px 0 0;
  }

  .pj-dialog[open] { animation-name: pj-sheet-in; }
  .pj-dialog-inner { max-height: 90dvh; }
  .pj-dialog-head { padding-block: 18px 14px; padding-inline: 20px 16px; }
  .pj-dialog-head h2 { font-size: 22px; }
  .pj-dialog-body { padding: 18px 20px 20px; }
  .pj-dialog-foot { padding: 14px 20px calc(18px + env(safe-area-inset-bottom)); }
  .pj-dialog-foot .pj-btn { flex: 1 1 auto; }

  .pj-field-grid { grid-template-columns: 1fr; }
  .pj-form-actions .pj-btn,
  .pj-send-options .pj-btn { flex: 1 1 100%; }
}

@media (max-width: 480px) {
  /* Logo mark, language and call to action share one row on phones; the link keeps its label. */
  [data-screen="landing"] .pj-topbar .pj-logo-copy { display: none; }
}

@media (max-width: 420px) {
  .pj-logo-copy span { display: none; }
  .pj-topbar .pj-btn-sm { padding: 0 14px; }
}
