/*
  OpenedMic v1.1 beta public-page presentation layer.
  Scoped to body.pp so product routes outside this page family remain unchanged.
*/

:root {
  --pp-page: #f1f3f1;
  --pp-surface: #fbfcfa;
  --pp-surface-quiet: #e6eae6;
  --pp-ink: #111713;
  --pp-muted: #111713;
  --pp-line: #cbd2cc;
  --pp-line-strong: #98a39b;
  --pp-accent: #c9362e;
  --pp-accent-dark: #9f2822;
  --pp-accent-soft: #f5d7d3;
  --pp-live: #16754b;
  --pp-dark: #111713;
  --pp-dark-2: #18211b;
  --pp-dark-line: #38453b;
  --pp-dark-text: #f1f5ef;
  --pp-dark-muted: #f1f5ef;
  --pp-shadow: 0 26px 60px rgb(25 36 29 / 0.11);
  --pp-shell: 1240px;
  --pp-reading: 760px;
  --pp-gutter: clamp(20px, 5vw, 72px);
  --pp-section: clamp(72px, 8vw, 120px);
}

@media (prefers-color-scheme: dark) {
  :root {
    --pp-page: #121814;
    --pp-surface: #18211b;
    --pp-surface-quiet: #202b23;
    --pp-ink: #f1f5ef;
    --pp-muted: #f1f5ef;
    --pp-line: #3d4b41;
    --pp-line-strong: #708072;
    --pp-accent: #f1665a;
    --pp-accent-dark: #ff8176;
    --pp-accent-soft: #48231f;
    --pp-live: #69d39f;
    --pp-shadow: 0 30px 72px rgb(0 0 0 / 0.28);
  }
}

html:has(body.pp) {
  background: var(--pp-page);
  overflow-x: clip;
  scroll-behavior: smooth;
}

body.pp {
  --bg: var(--pp-page);
  --bg2: var(--pp-surface);
  --card: var(--pp-surface);
  --border: var(--pp-line);
  --border2: var(--pp-line-strong);
  --text: var(--pp-ink);
  --dim: var(--pp-muted);
  --dim2: var(--pp-muted);
  --red: var(--pp-accent);
  --red-cta: var(--pp-accent);
  --white: var(--pp-surface);
  margin: 0;
  overflow-x: clip;
  background: var(--pp-page) !important;
  color: var(--pp-ink) !important;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 17px;
  line-height: 1.68;
  letter-spacing: -0.012em;
}

html[lang="he"] body.pp {
  font-family: "Noto Sans Hebrew", Arial, sans-serif !important;
  letter-spacing: 0;
  line-height: 1.76;
}

html[lang="ar"] body.pp {
  font-family: "Noto Naskh Arabic", "Noto Sans Arabic", serif !important;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.84;
}

body.pp::selection {
  background: var(--pp-accent-soft);
  color: var(--pp-ink);
}

body.pp a,
body.pp button {
  -webkit-tap-highlight-color: transparent;
}

body.pp a:focus-visible,
body.pp button:focus-visible {
  outline: 3px solid var(--pp-accent) !important;
  outline-offset: 4px !important;
}

body.pp .om-skip-link {
  background: var(--pp-dark) !important;
  color: var(--pp-dark-text) !important;
}

/* Site chrome */
body.pp > nav {
  position: sticky !important;
  inset-block-start: 0;
  z-index: 100;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 max(var(--pp-gutter), calc((100vw - var(--pp-shell)) / 2)) !important;
  background: color-mix(in srgb, var(--pp-page) 94%, transparent) !important;
  border: 0 !important;
  border-bottom: 1px solid var(--pp-line) !important;
  box-shadow: none !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
}

body.pp > nav > *,
body.pp .nav-right,
body.pp .nav-logo,
body.pp .nav-cta {
  min-width: 0;
  max-width: 100%;
}

body.pp .nav-logo,
body.pp .foot-logo {
  display: inline-flex !important;
  align-items: center;
  color: var(--pp-ink) !important;
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 1rem !important;
  font-weight: 850 !important;
  letter-spacing: -0.065em !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap;
}

body.pp .nav-logo .ed,
body.pp .foot-logo .ed {
  color: inherit !important;
  font-size: inherit !important;
  letter-spacing: inherit !important;
}

body.pp .nav-logo .mic,
body.pp .foot-logo .mic {
  color: var(--pp-accent) !important;
}

body.pp .nav-logo::after {
  content: "BETA";
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  margin-inline-start: 9px;
  padding: 3px 5px;
  border: 1px solid var(--pp-accent);
  border-radius: 3px;
  color: var(--pp-accent);
  font: 800 0.54rem/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.12em;
}

body.pp .nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

body.pp .nav-lang,
body.pp .lang-toggle {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px !important;
  color: var(--pp-ink) !important;
  border: 1px solid var(--pp-line-strong) !important;
  border-radius: 999px !important;
  font: 700 0.74rem/1 "JetBrains Mono", ui-monospace, monospace !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
}

body.pp .nav-cta,
body.pp .btn-cta {
  min-height: 44px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 20px !important;
  color: #fff !important;
  background: var(--pp-accent) !important;
  border: 1px solid var(--pp-accent) !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  font: 750 0.86rem/1 "Inter", system-ui, sans-serif !important;
  letter-spacing: -0.02em !important;
  text-decoration: none !important;
  transition: background-color 170ms ease, border-color 170ms ease, transform 170ms ease;
}

body.pp .nav-cta:hover,
body.pp .btn-cta:hover {
  background: var(--pp-accent-dark) !important;
  border-color: var(--pp-accent-dark) !important;
  filter: none !important;
  transform: translateY(-1px);
}

/* Page frame and editorial rhythm */
body.pp .page-wrap {
  width: min(calc(100% - (2 * var(--pp-gutter))), var(--pp-shell));
  max-width: none !important;
  margin: 0 auto !important;
  padding: clamp(24px, 3vw, 42px) 0 clamp(80px, 9vw, 132px) !important;
}

body.pp .page-wrap > h2,
body.pp .page-wrap > p,
body.pp .page-wrap > ul,
body.pp .page-wrap > ol,
body.pp .page-wrap > .faq-item {
  width: min(100%, var(--pp-reading));
  margin-inline: auto;
}

body.pp h1,
body.pp h2,
body.pp h3,
body.pp .step-title,
body.pp .role-title,
body.pp .benefit-title,
body.pp .faq-q {
  color: var(--pp-ink) !important;
  font-family: "Inter", system-ui, sans-serif !important;
  letter-spacing: -0.045em !important;
}

html[lang="he"] body.pp h1,
html[lang="he"] body.pp h2,
html[lang="he"] body.pp h3,
html[lang="ar"] body.pp h1,
html[lang="ar"] body.pp h2,
html[lang="ar"] body.pp h3 {
  letter-spacing: 0 !important;
}

body.pp .page-wrap > h2 {
  max-width: 100%;
  min-width: 0;
  margin-block: var(--pp-section) 22px !important;
  padding: 0 0 14px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--pp-line) !important;
  font-size: clamp(1.65rem, 2.7vw, 2.45rem) !important;
  line-height: 1.08 !important;
  font-weight: 760 !important;
  text-transform: none !important;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

body.pp p,
body.pp ul,
body.pp ol {
  color: var(--pp-muted) !important;
  font-size: 1rem !important;
  line-height: 1.76 !important;
}

html[lang="he"] body.pp p,
html[lang="he"] body.pp ul,
html[lang="he"] body.pp ol,
html[lang="ar"] body.pp p,
html[lang="ar"] body.pp ul,
html[lang="ar"] body.pp ol {
  line-height: 1.88 !important;
}

body.pp strong {
  color: var(--pp-ink) !important;
  font-weight: 700 !important;
}

body.pp main p a,
body.pp main li a,
body.pp .faq-a a {
  color: var(--pp-ink) !important;
  text-decoration-color: var(--pp-accent) !important;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* Breadcrumb */
body.pp .breadcrumb,
body.pp .pp-breadcrumb {
  position: static !important;
  inset: auto !important;
  z-index: auto !important;
  display: block !important;
  width: 100%;
  min-width: 0;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 0 26px !important;
  padding: 0 !important;
  color: var(--pp-muted) !important;
  background: transparent !important;
  border: 0 !important;
  backdrop-filter: none !important;
  font: 650 0.72rem/1.4 "JetBrains Mono", ui-monospace, monospace !important;
  letter-spacing: -0.02em;
}

body.pp .breadcrumb ol,
body.pp .pp-breadcrumb ol {
  display: flex;
  min-width: 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.pp .breadcrumb li,
body.pp .pp-breadcrumb li {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  margin: 0;
  overflow-wrap: anywhere;
}

body.pp .breadcrumb a,
body.pp .pp-breadcrumb a {
  color: var(--pp-muted) !important;
  text-decoration: underline !important;
  text-decoration-color: var(--pp-line-strong) !important;
  text-underline-offset: 4px;
}

body.pp .breadcrumb .sep,
body.pp .pp-breadcrumb .sep {
  color: var(--pp-accent) !important;
}

/* Hero family */
body.pp .pp-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  align-items: center;
  gap: clamp(40px, 7vw, 108px);
  min-height: clamp(520px, 64vh, 680px);
  padding-block: clamp(48px, 7vw, 92px);
  border-bottom: 1px solid var(--pp-line);
}

body.pp .pp-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

body.pp .pp-hero > * {
  min-width: 0;
}

body.pp .pp-kicker,
body.pp .tag {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px !important;
  padding: 0 !important;
  color: var(--pp-ink) !important;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  font: 750 0.72rem/1.2 "JetBrains Mono", ui-monospace, monospace !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase;
}

body.pp .pp-kicker::before,
body.pp .tag::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--pp-accent);
  flex: 0 0 auto;
}

html[dir="rtl"] body.pp .pp-kicker,
html[dir="rtl"] body.pp .tag {
  letter-spacing: 0 !important;
  text-transform: none;
}

body.pp .pp-hero h1 {
  max-width: 12ch;
  margin: 0 0 24px !important;
  color: var(--pp-ink) !important;
  font-size: clamp(2.7rem, 5.2vw, 5rem) !important;
  font-weight: 820 !important;
  line-height: 0.98 !important;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

html[lang="he"] body.pp .pp-hero h1,
html[lang="ar"] body.pp .pp-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.55rem, 4.7vw, 4.45rem) !important;
  line-height: 1.08 !important;
}

body.pp .pp-hero .intro {
  min-width: 0;
  max-width: 62ch;
  margin: 0 !important;
  color: var(--pp-muted) !important;
  font-size: clamp(1rem, 1.35vw, 1.19rem) !important;
  line-height: 1.7 !important;
  overflow-wrap: anywhere;
}

body.pp .pp-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 30px;
}

body.pp .pp-proof-row span {
  position: relative;
  padding-inline-start: 16px;
  color: var(--pp-ink);
  font-size: 0.82rem;
  font-weight: 700;
}

body.pp .pp-proof-row span::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.56em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pp-live);
}

/* Browser Room Object */
body.pp .pp-browser-object {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  color: var(--pp-dark-text);
  background: var(--pp-dark);
  border: 1px solid var(--pp-dark);
  border-radius: 14px;
  box-shadow: var(--pp-shadow);
}

body.pp .pp-browser-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid var(--pp-dark-line);
  font: 650 0.66rem/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: -0.02em;
}

body.pp .pp-browser-dots {
  display: flex;
  gap: 6px;
}

body.pp .pp-browser-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #536056;
}

body.pp .pp-browser-dots i:first-child {
  background: var(--pp-accent);
}

body.pp .pp-browser-title {
  color: var(--pp-dark-muted);
  text-align: center;
}

body.pp .pp-demo-label {
  justify-self: end;
  color: var(--pp-dark-muted);
  text-transform: uppercase;
}

body.pp .pp-browser-stage {
  position: relative;
  min-height: 420px;
  padding: 36px 34px 34px;
  background:
    linear-gradient(90deg, transparent 0 23%, rgb(255 255 255 / 0.045) 23% 23.2%, transparent 23.2% 74%, rgb(255 255 255 / 0.045) 74% 74.2%, transparent 74.2%),
    linear-gradient(var(--pp-dark), var(--pp-dark));
}

body.pp .pp-room-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--pp-dark-line);
  font-size: 0.78rem;
  font-weight: 700;
}

body.pp .pp-live-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.pp .pp-live-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pp-accent);
  box-shadow: 0 0 0 6px rgb(201 54 46 / 0.15);
  animation: pp-live-pulse 2.4s ease-in-out infinite;
}

body.pp .pp-room-code {
  color: var(--pp-dark-muted);
  font: 700 0.72rem/1 "JetBrains Mono", ui-monospace, monospace;
  direction: ltr;
  unicode-bidi: isolate;
}

body.pp .pp-signal-copy {
  max-width: 11ch;
  margin-top: 42px;
  color: var(--pp-dark-text);
  font-size: clamp(2.2rem, 4.2vw, 4.15rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

html[dir="rtl"] body.pp .pp-signal-copy {
  letter-spacing: 0;
  line-height: 1.1;
}

body.pp .pp-wave {
  position: absolute;
  inset-inline: 34px 180px;
  bottom: 54px;
  height: 62px;
  color: var(--pp-accent);
}

body.pp .pp-wave svg {
  width: 100%;
  height: 100%;
}

body.pp .pp-join-stack {
  position: absolute;
  inset-inline-end: 28px;
  bottom: 26px;
  display: flex;
  align-items: end;
  gap: 12px;
}

body.pp .pp-qr-card {
  width: 112px;
  padding: 10px;
  color: var(--pp-dark);
  background: #fff;
  border: 1px solid #fff;
  box-shadow: 0 12px 30px rgb(0 0 0 / 0.28);
}

body.pp .pp-qr-card svg {
  width: 100%;
  aspect-ratio: 1;
}

body.pp .pp-qr-card small {
  display: block;
  margin-top: 6px;
  color: #111713;
  font: 700 0.53rem/1.2 "JetBrains Mono", ui-monospace, monospace;
  text-align: center;
  text-transform: uppercase;
}

body.pp .pp-phone {
  width: 86px;
  min-height: 166px;
  padding: 12px 9px;
  color: var(--pp-dark);
  background: #f6f8f5;
  border: 5px solid #222a24;
  border-radius: 17px;
  box-shadow: 0 14px 32px rgb(0 0 0 / 0.32);
  transform: rotate(2deg);
}

body.pp .pp-phone-notch {
  width: 30px;
  height: 5px;
  margin: -4px auto 20px;
  border-radius: 99px;
  background: #222a24;
}

body.pp .pp-phone-brand {
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: -0.045em;
}

body.pp .pp-phone-state {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 18px;
  color: #2c5a42;
  font-size: 0.54rem;
  font-weight: 750;
}

body.pp .pp-phone-state::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2b9966;
}

body.pp .pp-phone-room {
  margin-top: 8px;
  font: 750 0.74rem/1 "JetBrains Mono", ui-monospace, monospace;
}

body.pp .pp-phone-volume {
  position: relative;
  height: 3px;
  margin-top: 32px;
  background: #cad1cb;
}

body.pp .pp-phone-volume::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 68%;
  height: 100%;
  background: var(--pp-accent);
}

body.pp .pp-object-caption {
  position: absolute;
  inset-inline-start: 34px;
  bottom: 20px;
  color: var(--pp-dark-muted);
  font: 600 0.62rem/1.4 "JetBrains Mono", ui-monospace, monospace;
}

/* Human Field Broadcast */
body.pp .pp-field-panel {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--pp-surface);
  border: 1px solid var(--pp-line);
  box-shadow: var(--pp-shadow);
}

body.pp .pp-field-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, var(--pp-accent-soft), transparent 31%),
    linear-gradient(145deg, transparent 0 42%, color-mix(in srgb, var(--pp-line) 45%, transparent) 42% 42.2%, transparent 42.2%);
  pointer-events: none;
}

body.pp .pp-field-illustration {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 430px;
  color: var(--pp-ink);
}

body.pp .pp-field-illustration .pp-room-line {
  fill: none;
  stroke: var(--pp-line-strong);
  stroke-width: 2;
}

body.pp .pp-field-illustration .pp-human {
  fill: var(--pp-ink);
}

body.pp .pp-field-illustration .pp-human-muted {
  fill: color-mix(in srgb, var(--pp-ink) 66%, var(--pp-page));
}

body.pp .pp-field-illustration .pp-phone-screen {
  fill: var(--pp-accent);
  stroke: var(--pp-surface);
  stroke-width: 2;
}

body.pp .pp-field-illustration .pp-signal-path {
  fill: none;
  stroke: var(--pp-accent);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 5 10;
}

body.pp .pp-field-illustration .pp-signal-ring {
  fill: none;
  stroke: var(--pp-accent);
  stroke-width: 3;
  opacity: 0.72;
}

body.pp .pp-field-note {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  color: var(--pp-ink);
  background: var(--pp-surface);
  border: 1px solid var(--pp-line-strong);
  font: 700 0.68rem/1.2 "JetBrains Mono", ui-monospace, monospace;
  box-shadow: 0 8px 24px rgb(25 36 29 / 0.09);
}

body.pp .pp-field-note::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pp-accent);
}

body.pp .pp-field-note-host {
  inset-inline-start: 24px;
  top: 24px;
}

body.pp .pp-field-note-listener {
  inset-inline-end: 24px;
  bottom: 22px;
}

body.pp .pp-field-panel-classes::before {
  background:
    radial-gradient(circle at 80% 18%, var(--pp-accent-soft), transparent 31%),
    linear-gradient(145deg, transparent 0 42%, color-mix(in srgb, var(--pp-line) 45%, transparent) 42% 42.2%, transparent 42.2%);
}

body.pp .pp-field-panel-tours::before {
  background:
    radial-gradient(circle at 19% 76%, color-mix(in srgb, var(--pp-live) 18%, transparent), transparent 31%),
    linear-gradient(128deg, transparent 0 36%, color-mix(in srgb, var(--pp-line) 48%, transparent) 36% 36.25%, transparent 36.25% 67%, color-mix(in srgb, var(--pp-line) 34%, transparent) 67% 67.2%, transparent 67.2%);
}

body.pp .pp-field-panel-ceremony::before {
  background:
    radial-gradient(circle at 50% 18%, color-mix(in srgb, var(--pp-accent-soft) 88%, transparent), transparent 30%),
    linear-gradient(180deg, transparent 0 73%, color-mix(in srgb, var(--pp-line) 48%, transparent) 73% 73.25%, transparent 73.25%);
}

body.pp .pp-field-panel-conference::before {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--pp-surface-quiet) 72%, transparent) 0 31%, transparent 31% 69%, color-mix(in srgb, var(--pp-surface-quiet) 72%, transparent) 69%),
    linear-gradient(180deg, transparent 0 25%, color-mix(in srgb, var(--pp-line) 45%, transparent) 25% 25.25%, transparent 25.25%);
}

/* Browser protocol object */
body.pp .pp-protocol-object {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  color: var(--pp-dark-text);
  background: var(--pp-dark);
  border: 1px solid var(--pp-dark-line);
  box-shadow: var(--pp-shadow);
}

body.pp .pp-protocol-object::before {
  content: "";
  position: absolute;
  inset: 64px 0 0;
  opacity: 0.58;
  background:
    linear-gradient(90deg, transparent 0 24%, rgb(255 255 255 / 0.05) 24% 24.15%, transparent 24.15% 76%, rgb(255 255 255 / 0.05) 76% 76.15%, transparent 76.15%),
    linear-gradient(180deg, transparent 0 33%, rgb(255 255 255 / 0.04) 33% 33.2%, transparent 33.2% 68%, rgb(255 255 255 / 0.04) 68% 68.2%, transparent 68.2%);
  pointer-events: none;
}

body.pp .pp-protocol-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 24px;
  color: var(--pp-dark-muted);
  border-bottom: 1px solid var(--pp-dark-line);
  font: 700 0.64rem/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.pp .pp-protocol-head span:first-child {
  color: var(--pp-dark-text);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: -0.04em;
  text-transform: none;
}

body.pp .pp-protocol-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(126px, 1fr) minmax(112px, 0.72fr) minmax(126px, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 330px;
  padding: 58px clamp(26px, 5vw, 58px) 44px;
}

body.pp .pp-protocol-node {
  min-height: 154px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: 22px;
  background: var(--pp-dark-2);
  border: 1px solid var(--pp-dark-line);
}

body.pp .pp-protocol-node strong {
  color: var(--pp-dark-text) !important;
  font: 720 clamp(0.9rem, 1.4vw, 1.08rem)/1.2 "Inter", system-ui, sans-serif;
}

body.pp .pp-protocol-meter {
  position: relative;
  display: block;
  height: 42px;
  background:
    linear-gradient(90deg, var(--pp-accent) 0 9%, transparent 9% 13%, var(--pp-accent) 13% 28%, transparent 28% 32%, var(--pp-accent) 32% 53%, transparent 53% 57%, var(--pp-accent) 57% 82%, transparent 82% 86%, var(--pp-accent) 86% 100%);
  clip-path: polygon(0 50%, 8% 50%, 8% 32%, 16% 32%, 16% 66%, 24% 66%, 24% 20%, 32% 20%, 32% 75%, 40% 75%, 40% 39%, 48% 39%, 48% 60%, 56% 60%, 56% 11%, 64% 11%, 64% 81%, 72% 81%, 72% 29%, 80% 29%, 80% 69%, 88% 69%, 88% 45%, 100% 45%, 100% 55%, 0 55%);
}

body.pp .pp-protocol-audience {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

body.pp .pp-protocol-audience::before,
body.pp .pp-protocol-audience::after {
  content: "";
  grid-column: span 2;
  height: 34px;
  background:
    radial-gradient(circle at 18% 28%, var(--pp-dark-text) 0 5px, transparent 5.5px),
    radial-gradient(circle at 82% 28%, var(--pp-dark-text) 0 5px, transparent 5.5px),
    radial-gradient(ellipse at 18% 100%, var(--pp-dark-muted) 0 11px, transparent 11.5px),
    radial-gradient(ellipse at 82% 100%, var(--pp-dark-muted) 0 11px, transparent 11.5px);
}

body.pp .pp-protocol-path {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  color: var(--pp-accent);
  font: 750 0.62rem/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.08em;
}

body.pp .pp-protocol-path i {
  position: relative;
  display: block;
  height: 1px;
  background: currentColor;
}

body.pp .pp-protocol-path i::after {
  content: "";
  position: absolute;
  inset-inline-end: -1px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: pp-protocol-pulse 1.8s ease-in-out infinite;
}

body.pp .pp-protocol-path i:last-child::after {
  inset-inline: -1px auto;
  animation-delay: 0.9s;
}

body.pp .pp-protocol-options {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 0 24px 24px;
}

body.pp .pp-protocol-options span {
  padding: 7px 10px;
  color: var(--pp-dark-muted);
  border: 1px solid var(--pp-dark-line);
  font: 700 0.58rem/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.08em;
}

/* Scannable room object */
body.pp .pp-qr-object {
  position: relative;
  min-height: 500px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  color: var(--pp-ink);
  background:
    linear-gradient(90deg, transparent 49.9%, color-mix(in srgb, var(--pp-line) 62%, transparent) 50%, transparent 50.1%),
    linear-gradient(180deg, var(--pp-surface) 0 74%, var(--pp-surface-quiet) 74% 100%);
  border: 1px solid var(--pp-line);
  box-shadow: var(--pp-shadow);
}

body.pp .pp-qr-object-head {
  position: relative;
  z-index: 1;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--pp-line);
  font: 750 0.72rem/1 "Inter", system-ui, sans-serif;
}

body.pp .pp-qr-object-head code {
  color: var(--pp-accent);
  background: transparent;
  font: 750 0.68rem/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.1em;
}

body.pp .pp-qr-display {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 42px 28px 34px;
}

body.pp .pp-real-qr,
body.pp .pp-qr-noscript {
  width: clamp(220px, 23vw, 280px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: clamp(15px, 2vw, 22px);
  background: #fff;
  border: 1px solid #aeb7b0;
  box-shadow: 0 20px 44px rgb(17 23 19 / 0.16);
}

body.pp .pp-real-qr::before {
  content: "DEMO00";
  color: var(--pp-muted);
  font: 750 0.72rem/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.12em;
}

body.pp .pp-real-qr.pp-qr-ready::before {
  display: none;
}

body.pp .pp-real-qr canvas,
body.pp .pp-real-qr img,
body.pp .pp-real-qr svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
  image-rendering: pixelated;
}

body.pp .pp-real-qr.pp-qr-failed {
  outline: 2px solid var(--pp-accent);
  outline-offset: -8px;
}

body.pp .pp-qr-noscript {
  color: #111713;
}

body.pp .pp-qr-fallback {
  position: relative;
  z-index: 1;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  color: var(--pp-ink) !important;
  border-top: 1px solid var(--pp-line);
  font: 700 clamp(0.66rem, 1.3vw, 0.8rem)/1.3 "JetBrains Mono", ui-monospace, monospace;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  overflow-wrap: anywhere;
}

/* FAQ topic index */
body.pp .pp-faq-index {
  align-self: stretch;
  min-width: 0;
  min-height: 500px;
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 58px);
  color: var(--pp-dark-text);
  background: var(--pp-dark);
  border: 1px solid var(--pp-dark-line);
  box-shadow: var(--pp-shadow);
  overflow-x: clip;
}

body.pp .pp-faq-index ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: pp-faq;
}

body.pp .pp-faq-index li {
  counter-increment: pp-faq;
  border-bottom: 1px solid var(--pp-dark-line);
}

body.pp .pp-faq-index li:last-child {
  border-bottom: 0;
}

body.pp .pp-faq-index a {
  min-width: 0;
  min-height: 66px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 14px;
  color: var(--pp-dark-text) !important;
  font-size: clamp(0.82rem, 1.4vw, 1rem);
  font-weight: 680;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-decoration: underline !important;
  text-decoration-color: color-mix(in srgb, var(--pp-dark-muted) 72%, transparent) !important;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  text-decoration-skip-ink: auto;
}

body.pp .pp-faq-index a::before {
  content: counter(pp-faq, decimal-leading-zero);
  color: var(--pp-accent);
  font: 700 0.62rem/1 "JetBrains Mono", ui-monospace, monospace;
}

body.pp .pp-faq-index a::after {
  content: "";
  width: 22px;
  height: 1px;
  justify-self: end;
  background: var(--pp-dark-muted);
  transition: width 160ms ease, background-color 160ms ease;
}

body.pp .pp-faq-index a:hover::after,
body.pp .pp-faq-index a:focus-visible::after {
  width: 42px;
  background: var(--pp-accent);
}

body.pp .pp-faq-index a:hover,
body.pp .pp-faq-index a:focus-visible {
  text-decoration-color: var(--pp-accent) !important;
}

@keyframes pp-protocol-pulse {
  0%, 100% { opacity: 0.32; transform: scale(0.72); }
  50% { opacity: 1; transform: scale(1); }
}

/* Editorial definition hero */
body.pp .pp-hero-editorial {
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
  max-width: 1020px;
  margin-inline: auto;
  padding-block: clamp(48px, 7vw, 90px) clamp(56px, 8vw, 104px);
}

body.pp .pp-hero-editorial .pp-hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  align-items: end;
  gap: clamp(36px, 7vw, 92px);
}

body.pp .pp-editorial-heading h1 {
  max-width: 9ch;
}

body.pp .pp-editorial-answer {
  padding-top: 22px;
  border-top: 2px solid var(--pp-ink);
}

body.pp .pp-definition-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: clamp(48px, 7vw, 82px);
  border-top: 1px solid var(--pp-line-strong);
  border-bottom: 1px solid var(--pp-line-strong);
}

body.pp .pp-definition-step {
  min-height: 118px;
  padding: 18px 18px 20px;
  border-inline-end: 1px solid var(--pp-line);
}

body.pp .pp-definition-step:last-child {
  border-inline-end: 0;
}

body.pp .pp-definition-index {
  display: block;
  margin-bottom: 22px;
  color: var(--pp-accent);
  font: 750 0.62rem/1 "JetBrains Mono", ui-monospace, monospace;
}

body.pp .pp-definition-label {
  display: block;
  color: var(--pp-ink);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.35;
}

/* Guest Mic hero and control flow */
body.pp .pp-hero-guest {
  grid-template-columns: minmax(0, 0.8fr) minmax(470px, 1.2fr);
  min-height: clamp(540px, 66vh, 690px);
  margin-top: 18px;
  padding: clamp(44px, 6vw, 82px);
  color: var(--pp-dark-text);
  background: var(--pp-dark);
  border: 0;
}

body.pp .pp-hero-guest .pp-kicker,
body.pp .pp-hero-guest h1,
body.pp .pp-hero-guest strong {
  color: var(--pp-dark-text) !important;
}

body.pp .pp-hero-guest .intro {
  color: var(--pp-dark-muted) !important;
}

body.pp .pp-hero-guest .breadcrumb,
body.pp .pp-hero-guest .breadcrumb a {
  color: var(--pp-dark-muted) !important;
}

body.pp .pp-hero-guest .breadcrumb .sep {
  color: var(--pp-accent) !important;
}

body.pp .pp-guest-flow {
  position: relative;
  display: grid;
  gap: 18px;
  padding-inline-start: 52px;
}

body.pp .pp-guest-flow::before {
  content: "";
  position: absolute;
  inset-inline-start: 18px;
  top: 44px;
  bottom: 44px;
  width: 1px;
  background: var(--pp-dark-line);
}

body.pp .pp-guest-state {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 104px;
  padding: 18px;
  border-top: 1px solid var(--pp-dark-line);
  border-bottom: 1px solid var(--pp-dark-line);
}

body.pp .pp-guest-state::before {
  content: "";
  position: absolute;
  inset-inline-start: -40px;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 3px solid var(--pp-dark);
  border-radius: 50%;
  background: #7f8b81;
  box-shadow: 0 0 0 1px var(--pp-dark-line);
  transform: translateY(-50%);
}

body.pp .pp-guest-state-approved::before,
body.pp .pp-guest-state-live::before {
  background: var(--pp-accent);
}

body.pp .pp-guest-glyph {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--pp-dark-text);
  border: 1px solid var(--pp-dark-line);
  border-radius: 50%;
}

body.pp .pp-guest-state-live .pp-guest-glyph {
  color: var(--pp-dark);
  background: var(--pp-accent);
  border-color: var(--pp-accent);
}

body.pp .pp-guest-glyph svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
}

body.pp .pp-guest-state small {
  display: block;
  margin-bottom: 5px;
  color: var(--pp-dark-muted);
  font: 650 0.62rem/1.2 "JetBrains Mono", ui-monospace, monospace;
  text-transform: uppercase;
}

body.pp .pp-guest-state strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}

body.pp .pp-guest-control-note {
  margin: 4px 0 0 18px;
  color: var(--pp-dark-muted) !important;
  font-size: 0.78rem !important;
  line-height: 1.55 !important;
}

/* Existing content patterns, rebuilt without a card wall */
body.pp .step-grid {
  width: 100%;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;
  margin: 0 !important;
  border-top: 1px solid var(--pp-line-strong);
  border-bottom: 1px solid var(--pp-line-strong);
}

body.pp .step-card {
  min-width: 0;
  min-height: 280px;
  padding: 28px clamp(18px, 2.6vw, 34px) 34px !important;
  background: transparent !important;
  border: 0 !important;
  border-inline-end: 1px solid var(--pp-line) !important;
  border-radius: 0 !important;
}

body.pp .step-card:last-child {
  border-inline-end: 0 !important;
}

body.pp .step-num {
  margin: 0 0 74px !important;
  color: var(--pp-accent) !important;
  font: 750 0.7rem/1 "JetBrains Mono", ui-monospace, monospace !important;
}

body.pp .step-num::before {
  content: "STEP ";
}

html[lang="he"] body.pp .step-num::before,
html[lang="ar"] body.pp .step-num::before {
  content: "";
}

body.pp .step-title {
  margin-bottom: 12px !important;
  font-size: 1.22rem !important;
  font-weight: 760 !important;
  line-height: 1.2 !important;
}

body.pp .step-desc {
  color: var(--pp-muted) !important;
  font-size: 0.9rem !important;
  line-height: 1.66 !important;
}

body.pp .role-grid {
  width: 100%;
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr) !important;
  gap: 0 !important;
  margin: 0 !important;
  border: 1px solid var(--pp-line);
}

body.pp .role-card {
  padding: clamp(28px, 4vw, 52px) !important;
  background: var(--pp-surface) !important;
  border: 0 !important;
  border-radius: 0 !important;
}

body.pp .role-card:first-child {
  color: var(--pp-dark-text);
  background: var(--pp-dark) !important;
}

body.pp .role-card:first-child .role-title,
body.pp .role-card:first-child li,
body.pp .role-card:first-child strong {
  color: var(--pp-dark-text) !important;
}

body.pp .role-card:first-child li::marker {
  color: var(--pp-accent);
}

body.pp .role-title {
  margin-bottom: 24px !important;
  color: var(--pp-accent) !important;
  font-size: 0.75rem !important;
  font-weight: 780 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase;
}

html[dir="rtl"] body.pp .role-title {
  letter-spacing: 0 !important;
  text-transform: none;
}

body.pp .role-card ul {
  margin: 0;
}

body.pp .benefit-grid {
  width: 100%;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin: 44px 0 0 !important;
  border-top: 1px solid var(--pp-line-strong);
}

body.pp .benefit-card {
  position: relative;
  min-height: 180px;
  padding: 30px 28px 34px 74px !important;
  background: transparent !important;
  border: 0 !important;
  border-inline-end: 1px solid var(--pp-line) !important;
  border-bottom: 1px solid var(--pp-line) !important;
  border-radius: 0 !important;
}

html[dir="rtl"] body.pp .benefit-card {
  padding: 30px 74px 34px 28px !important;
}

body.pp .benefit-card:nth-child(2n) {
  border-inline-end: 0 !important;
}

body.pp .benefit-icon {
  position: absolute;
  inset-inline-start: 24px;
  top: 31px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin: 0 !important;
  color: transparent !important;
  font-size: 0 !important;
  border: 1px solid var(--pp-accent);
  border-radius: 50%;
}

body.pp .benefit-icon::before {
  content: "01";
  color: var(--pp-accent);
  font: 750 0.56rem/1 "JetBrains Mono", ui-monospace, monospace;
}

body.pp .benefit-card:nth-child(2) .benefit-icon::before { content: "02"; }
body.pp .benefit-card:nth-child(3) .benefit-icon::before { content: "03"; }
body.pp .benefit-card:nth-child(4) .benefit-icon::before { content: "04"; }

body.pp .benefit-title {
  margin-bottom: 8px !important;
  font-size: 1.05rem !important;
  font-weight: 760 !important;
}

body.pp .benefit-desc {
  color: var(--pp-muted) !important;
  font-size: 0.88rem !important;
  line-height: 1.62 !important;
}

body.pp .rule-list,
body.pp .not-list {
  padding: 0 !important;
  list-style: none !important;
}

body.pp .rule-list li,
body.pp .not-list li {
  position: relative;
  padding: 15px 0 15px 36px;
  margin: 0 !important;
  border-bottom: 1px solid var(--pp-line);
}

body.pp .rule-list li::before,
body.pp .not-list li::before {
  position: absolute;
  left: 0;
  top: 17px;
  color: var(--pp-accent) !important;
  font: 750 0.7rem/1 "JetBrains Mono", ui-monospace, monospace;
}

body.pp .rule-list li::before { content: "YES" !important; }
body.pp .not-list li::before { content: "NO" !important; }

body.pp .faq-item {
  padding: 24px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--pp-line) !important;
}

body.pp .faq-q {
  margin-bottom: 8px !important;
  font-size: 1.03rem !important;
  font-weight: 740 !important;
  line-height: 1.35 !important;
}

body.pp .faq-a {
  color: var(--pp-muted) !important;
  font-size: 0.93rem !important;
  line-height: 1.72 !important;
}

body.pp .cta-box {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 36px;
  margin: var(--pp-section) 0 0 !important;
  padding: clamp(36px, 5vw, 66px) !important;
  text-align: start !important;
  background: var(--pp-dark) !important;
  border: 0 !important;
  border-radius: 0 !important;
}

body.pp .cta-box h2 {
  margin: 0 0 12px !important;
  padding: 0 !important;
  color: var(--pp-dark-text) !important;
  border: 0 !important;
  font-size: clamp(1.7rem, 3vw, 2.7rem) !important;
  line-height: 1.06 !important;
}

body.pp .cta-box p {
  max-width: 620px !important;
  margin: 0 !important;
  color: var(--pp-dark-muted) !important;
}

body.pp .cta-box .btn-cta {
  min-width: 154px;
}

body.pp .internal-links {
  width: 100%;
  margin: 0 !important;
  padding: var(--pp-section) 0 0 !important;
  border: 0 !important;
}

body.pp .internal-links h2 {
  margin: 0 0 22px !important;
  padding: 0 0 12px !important;
  color: var(--pp-ink) !important;
  border: 0 !important;
  border-bottom: 1px solid var(--pp-line) !important;
  font-size: 1.05rem !important;
}

body.pp .link-row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 !important;
  border-top: 1px solid var(--pp-line);
}

body.pp .link-chip {
  position: relative;
  min-height: 74px;
  display: flex !important;
  align-items: center;
  padding: 16px 42px 16px 14px !important;
  color: var(--pp-ink) !important;
  background: transparent !important;
  border: 0 !important;
  border-inline-end: 1px solid var(--pp-line) !important;
  border-bottom: 1px solid var(--pp-line) !important;
  border-radius: 0 !important;
  font-size: 0.86rem !important;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none !important;
}

html[dir="rtl"] body.pp .link-chip {
  padding: 16px 14px 16px 42px !important;
}

body.pp .link-chip::after {
  content: "↗";
  position: absolute;
  inset-inline-end: 15px;
  color: var(--pp-accent);
  font-size: 1rem;
}

body.pp .link-chip:nth-child(3n) {
  border-inline-end: 0 !important;
}

/* Footer */
body.pp > footer {
  display: grid !important;
  grid-template-columns: auto 1fr auto;
  align-items: start !important;
  gap: 34px !important;
  padding: 38px max(var(--pp-gutter), calc((100vw - var(--pp-shell)) / 2)) 42px !important;
  color: var(--pp-muted);
  background: var(--pp-page);
  border: 0 !important;
  border-top: 1px solid var(--pp-line) !important;
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
}

body.pp > footer > * {
  min-width: 0;
  max-width: 100%;
}

body.pp .foot-links {
  display: flex !important;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px !important;
}

body.pp .foot-links a {
  color: var(--pp-muted) !important;
  font-size: 0.78rem !important;
  text-decoration: underline !important;
  text-decoration-color: transparent !important;
  text-underline-offset: 4px;
}

body.pp .foot-links a:hover {
  color: var(--pp-ink) !important;
  text-decoration-color: var(--pp-accent) !important;
}

body.pp .foot-copy {
  color: var(--pp-muted) !important;
  font: 600 0.64rem/1.5 "JetBrains Mono", ui-monospace, monospace !important;
  direction: ltr;
  unicode-bidi: isolate;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-align: center;
  white-space: normal;
}

@keyframes pp-live-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgb(201 54 46 / 0.13); }
  50% { box-shadow: 0 0 0 9px rgb(201 54 46 / 0.03); }
}

@media (max-width: 980px) {
  body.pp .pp-hero,
  body.pp .pp-hero-guest {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body.pp .pp-hero-copy {
    max-width: 760px;
  }

  body.pp .pp-browser-object,
  body.pp .pp-field-panel,
  body.pp .pp-protocol-object,
  body.pp .pp-qr-object,
  body.pp .pp-faq-index {
    width: min(100%, 760px);
    justify-self: center;
  }

  body.pp .pp-hero-editorial .pp-hero-copy {
    grid-template-columns: 1fr;
    align-items: start;
  }

  body.pp .pp-editorial-answer {
    max-width: 680px;
  }

  body.pp .pp-definition-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  body.pp .pp-definition-step:nth-child(2) {
    border-inline-end: 0;
  }

  body.pp .pp-definition-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--pp-line);
  }

  body.pp .link-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.pp .link-chip:nth-child(3n) {
    border-inline-end: 1px solid var(--pp-line) !important;
  }

  body.pp .link-chip:nth-child(2n) {
    border-inline-end: 0 !important;
  }

  body.pp > footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  :root {
    --pp-gutter: 20px;
    --pp-section: 64px;
  }

  body.pp {
    font-size: 16px;
  }

  body.pp > nav {
    min-height: 64px;
  }

  body.pp .nav-cta {
    min-width: 44px;
    padding: 0 14px !important;
  }

  body.pp .pp-hero {
    gap: 40px;
    padding-block: 44px 56px;
  }

  body.pp .pp-hero h1 {
    font-size: clamp(2.45rem, 13vw, 4rem) !important;
  }

  html[lang="ru"] body.pp .pp-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.5rem) !important;
    line-height: 1.02 !important;
  }

  html[lang="he"] body.pp .pp-hero h1,
  html[lang="ar"] body.pp .pp-hero h1 {
    font-size: clamp(2.3rem, 11vw, 3.5rem) !important;
  }

  body.pp .pp-browser-object {
    min-height: 430px;
  }

  body.pp .pp-browser-stage {
    min-height: 380px;
    padding: 28px 22px;
  }

  body.pp .pp-signal-copy {
    margin-top: 34px;
    font-size: clamp(2rem, 11vw, 3.3rem);
  }

  body.pp .pp-wave {
    inset-inline: 22px 138px;
    bottom: 48px;
  }

  body.pp .pp-join-stack {
    inset-inline-end: 16px;
    bottom: 18px;
    gap: 7px;
  }

  body.pp .pp-qr-card {
    width: 84px;
    padding: 7px;
  }

  body.pp .pp-phone {
    width: 68px;
    min-height: 140px;
    border-width: 4px;
    border-radius: 14px;
  }

  body.pp .pp-object-caption {
    inset-inline-start: 22px;
    bottom: 15px;
    max-width: 118px;
  }

  body.pp .pp-field-panel {
    min-height: 410px;
  }

  body.pp .pp-field-illustration {
    min-height: 360px;
  }

  body.pp .pp-field-note {
    font-size: 0.6rem;
  }

  body.pp .pp-protocol-object,
  body.pp .pp-qr-object,
  body.pp .pp-faq-index {
    min-height: 410px;
  }

  body.pp .pp-protocol-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 280px;
    padding: 24px 22px;
  }

  body.pp .pp-protocol-node {
    min-height: 92px;
    grid-template-columns: minmax(90px, 0.65fr) 1fr;
    align-items: center;
    gap: 18px;
    padding: 16px;
  }

  body.pp .pp-protocol-meter {
    height: 32px;
  }

  body.pp .pp-protocol-path {
    min-height: 32px;
  }

  body.pp .pp-qr-display {
    padding-block: 28px 24px;
  }

  body.pp .pp-real-qr,
  body.pp .pp-qr-noscript {
    width: min(68vw, 250px);
  }

  body.pp .pp-faq-index {
    padding: 22px;
  }

  body.pp .pp-faq-index a {
    min-height: 58px;
    grid-template-columns: 30px minmax(0, 1fr) 26px;
    gap: 10px;
  }

  body.pp .pp-hero-guest {
    margin-top: 0;
    padding: 38px 22px 44px;
  }

  body.pp .pp-guest-flow {
    padding-inline-start: 40px;
  }

  body.pp .pp-guest-state {
    grid-template-columns: 52px 1fr;
    gap: 12px;
    padding: 15px 0;
  }

  body.pp .pp-guest-glyph {
    width: 50px;
    height: 50px;
  }

  body.pp .step-grid,
  body.pp .role-grid,
  body.pp .benefit-grid,
  body.pp .cta-box,
  body.pp .link-row {
    grid-template-columns: 1fr !important;
  }

  body.pp .step-card,
  body.pp .role-card,
  body.pp .benefit-card,
  body.pp .link-chip {
    border-inline-end: 0 !important;
  }

  body.pp .step-card {
    min-height: 0;
    padding: 25px 0 28px !important;
    border-bottom: 1px solid var(--pp-line) !important;
  }

  body.pp .step-card:last-child {
    border-bottom: 0 !important;
  }

  body.pp .step-num {
    margin-bottom: 34px !important;
  }

  body.pp .role-card {
    padding: 32px 24px !important;
  }

  body.pp .benefit-card {
    min-height: 0;
  }

  body.pp .cta-box {
    align-items: start;
    gap: 26px;
  }

  body.pp .cta-box .btn-cta {
    width: 100%;
  }

  body.pp .link-chip:nth-child(n) {
    border-inline-end: 0 !important;
  }
}

@media (max-width: 430px) {
  body.pp .page-wrap > h2 {
    font-size: clamp(1.34rem, 6.3vw, 1.42rem) !important;
    line-height: 1.16 !important;
  }

  body.pp > nav {
    gap: 8px;
    padding-inline: 14px !important;
  }

  body.pp .nav-logo {
    font-size: 0.88rem !important;
  }

  body.pp .nav-logo::after {
    margin-inline-start: 5px;
    padding-inline: 4px;
  }

  body.pp .nav-right { gap: 8px; }

  body.pp .nav-lang,
  body.pp .lang-toggle {
    min-width: 38px;
    min-height: 38px;
    padding: 0 9px !important;
  }

  body.pp .nav-cta {
    min-height: 40px;
    padding: 0 10px !important;
    font-size: 0.76rem !important;
    line-height: 1.1 !important;
    overflow-wrap: anywhere;
    text-align: center;
  }

  body.pp .pp-definition-rail {
    grid-template-columns: 1fr;
  }

  body.pp .pp-definition-step,
  body.pp .pp-definition-step:nth-child(n) {
    min-height: 96px;
    border-inline-end: 0;
    border-bottom: 1px solid var(--pp-line);
  }

  body.pp .pp-definition-step:last-child {
    border-bottom: 0;
  }

  body.pp .pp-protocol-head,
  body.pp .pp-qr-object-head {
    padding-inline: 18px;
  }

  body.pp .pp-protocol-options {
    padding-inline: 18px;
  }

  body.pp .pp-qr-fallback {
    padding-inline: 14px;
    font-size: 0.61rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.pp .pp-live-label::before {
    animation: none !important;
    box-shadow: 0 0 0 5px rgb(201 54 46 / 0.12);
  }

  body.pp .pp-protocol-path i::after {
    animation: none !important;
  }

  body.pp .nav-cta:hover,
  body.pp .btn-cta:hover {
    transform: none;
  }
}

@media (forced-colors: active) {
  body.pp .pp-browser-object,
  body.pp .pp-field-panel,
  body.pp .pp-protocol-object,
  body.pp .pp-qr-object,
  body.pp .pp-faq-index,
  body.pp .pp-hero-guest,
  body.pp .role-card,
  body.pp .cta-box {
    border: 1px solid CanvasText !important;
  }

  body.pp .pp-live-label::before,
  body.pp .pp-proof-row span::before,
  body.pp .pp-field-note::before {
    background: Highlight;
  }
}

/* D4 visual refinement: real-use media and one audited icon family. */
body.pp .pp-icon {
  --pp-icon: none;
  display: inline-block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: inherit;
  background: currentColor;
  -webkit-mask-image: var(--pp-icon);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: var(--pp-icon);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

body.pp .pp-icon-broadcast { --pp-icon: url("/assets/public-pages-d4/icons/tabler/broadcast.svg"); }
body.pp .pp-icon-browser { --pp-icon: url("/assets/public-pages-d4/icons/tabler/browser.svg"); }
body.pp .pp-icon-building-community { --pp-icon: url("/assets/public-pages-d4/icons/tabler/building-community.svg"); }
body.pp .pp-icon-device-mobile { --pp-icon: url("/assets/public-pages-d4/icons/tabler/device-mobile.svg"); }
body.pp .pp-icon-message-circle { --pp-icon: url("/assets/public-pages-d4/icons/tabler/message-circle.svg"); }
body.pp .pp-icon-microphone { --pp-icon: url("/assets/public-pages-d4/icons/tabler/microphone.svg"); }
body.pp .pp-icon-network { --pp-icon: url("/assets/public-pages-d4/icons/tabler/network.svg"); }
body.pp .pp-icon-presentation { --pp-icon: url("/assets/public-pages-d4/icons/tabler/presentation.svg"); }
body.pp .pp-icon-qrcode { --pp-icon: url("/assets/public-pages-d4/icons/tabler/qrcode.svg"); }
body.pp .pp-icon-route { --pp-icon: url("/assets/public-pages-d4/icons/tabler/route.svg"); }
body.pp .pp-icon-school { --pp-icon: url("/assets/public-pages-d4/icons/tabler/school.svg"); }
body.pp .pp-icon-shield-lock { --pp-icon: url("/assets/public-pages-d4/icons/tabler/shield-lock.svg"); }
body.pp .pp-icon-user-check { --pp-icon: url("/assets/public-pages-d4/icons/tabler/user-check.svg"); }

body.pp .pp-story-object {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  color: var(--pp-ink);
  background: var(--pp-surface);
  border: 1px solid var(--pp-line);
  border-radius: 18px;
  box-shadow: var(--pp-shadow);
}

body.pp .pp-story-media {
  position: relative;
  overflow: hidden;
  min-width: 0;
  height: 390px;
  background: var(--pp-surface-quiet);
}

body.pp .pp-story-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* How it works: a real room, followed by the three actions. */
body.pp .pp-browser-object {
  display: grid;
  grid-template-rows: minmax(390px, 1fr) auto;
  min-height: 500px;
  color: var(--pp-ink);
  background: var(--pp-surface);
  border-color: var(--pp-line);
  border-radius: 18px;
}

body.pp .pp-browser-object .pp-story-media {
  height: 410px;
}

body.pp .pp-browser-object .pp-story-media img {
  object-position: center 52%;
}

body.pp .pp-story-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--pp-surface);
  border-top: 1px solid var(--pp-line);
}

body.pp .pp-story-step {
  min-width: 0;
  min-height: 104px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-inline-end: 1px solid var(--pp-line);
}

body.pp .pp-story-step:last-child {
  border-inline-end: 0;
}

body.pp .pp-story-step .pp-icon {
  width: 28px;
  height: 28px;
  color: var(--pp-accent);
}

body.pp .pp-story-step strong {
  min-width: 0;
  color: var(--pp-ink) !important;
  font-size: 0.82rem;
  font-weight: 740;
  line-height: 1.4;
}

/* Use cases: documentary photography with a compact, localized legend. */
body.pp .pp-field-panel {
  display: grid;
  grid-template-rows: minmax(410px, 1fr) auto;
  min-height: 500px;
  background: var(--pp-surface);
  border-radius: 18px;
}

body.pp .pp-field-panel::before,
body.pp .pp-field-panel-classes::before,
body.pp .pp-field-panel-tours::before,
body.pp .pp-field-panel-ceremony::before,
body.pp .pp-field-panel-conference::before {
  content: none;
}

body.pp .pp-field-panel .pp-story-media {
  height: 420px;
}

body.pp .pp-field-panel-classes .pp-story-media img { object-position: 58% center; }
body.pp .pp-field-panel-tours .pp-story-media img { object-position: 50% center; }
body.pp .pp-field-panel-ceremony .pp-story-media img { object-position: 52% center; }
body.pp .pp-field-panel-conference .pp-story-media img { object-position: 46% center; }

body.pp .pp-field-legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--pp-line);
}

body.pp .pp-field-note {
  position: static;
  inset: auto;
  min-width: 0;
  min-height: 88px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  color: var(--pp-ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font: 700 0.72rem/1.4 "Inter", system-ui, sans-serif;
}

html[lang="he"] body.pp .pp-field-note,
html[lang="ar"] body.pp .pp-field-note {
  font-family: inherit;
}

body.pp .pp-field-note:first-child {
  border-inline-end: 1px solid var(--pp-line);
}

body.pp .pp-field-note::before {
  content: none;
}

body.pp .pp-field-note .pp-icon {
  width: 26px;
  height: 26px;
  color: var(--pp-accent);
}

body.pp .pp-field-note-listener .pp-icon {
  color: var(--pp-live);
}

body.pp .pp-field-note strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--pp-ink) !important;
  font: inherit;
}

/* Browser audio: precise technical flow, no fake product screen. */
body.pp .pp-protocol-object {
  min-height: 500px;
  color: var(--pp-ink);
  background: var(--pp-surface);
  border-color: var(--pp-line);
  border-radius: 18px;
}

body.pp .pp-protocol-object::before {
  content: none;
}

body.pp .pp-protocol-head {
  min-height: 72px;
  padding: 0 26px;
  color: var(--pp-muted);
  border-bottom-color: var(--pp-line);
}

body.pp .pp-protocol-head span:first-child {
  color: var(--pp-ink);
}

body.pp .pp-protocol-head span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.pp .pp-protocol-head .pp-icon {
  width: 18px;
  height: 18px;
  color: var(--pp-live);
}

body.pp .pp-protocol-grid {
  grid-template-columns: minmax(150px, 1fr) minmax(110px, 0.55fr) minmax(150px, 1fr);
  gap: 24px;
  min-height: 350px;
  padding: 48px clamp(28px, 5vw, 58px) 42px;
}

body.pp .pp-protocol-node {
  min-height: 210px;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: start;
  gap: 28px;
  padding: 28px;
  color: var(--pp-ink);
  background: color-mix(in srgb, var(--pp-surface-quiet) 62%, var(--pp-surface));
  border: 1px solid var(--pp-line);
  border-radius: 14px;
}

body.pp .pp-protocol-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--pp-accent);
  border: 1px solid var(--pp-line-strong);
  border-radius: 50%;
}

body.pp .pp-protocol-icon .pp-icon {
  width: 38px;
  height: 38px;
}

body.pp .pp-protocol-node strong {
  color: var(--pp-ink) !important;
  font: 760 clamp(1rem, 1.6vw, 1.2rem)/1.2 "Inter", system-ui, sans-serif;
}

body.pp .pp-protocol-path {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 12px;
  color: var(--pp-accent);
}

body.pp .pp-protocol-path::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset-inline: -42px;
  top: 17px;
  height: 1px;
  background: var(--pp-line-strong);
}

body.pp .pp-protocol-path .pp-icon {
  width: 34px;
  height: 34px;
  box-shadow: 0 0 0 12px var(--pp-surface);
}

body.pp .pp-protocol-path span {
  padding: 5px 8px;
  background: var(--pp-surface);
}

body.pp .pp-protocol-path i::after {
  content: none;
  animation: none;
}

body.pp .pp-protocol-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: stretch;
  gap: 0;
  padding: 0;
  border-top: 1px solid var(--pp-line);
}

body.pp .pp-protocol-options span {
  min-height: 62px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: var(--pp-muted);
  border: 0;
  border-inline-end: 1px solid var(--pp-line);
}

body.pp .pp-protocol-options span:last-child {
  border-inline-end: 0;
}

/* Guest Mic: real participation scene plus one controlled three-step track. */
body.pp .pp-guest-flow {
  position: relative;
  display: grid;
  grid-template-rows: minmax(280px, 1fr) auto;
  gap: 0;
  padding: 0;
  overflow: hidden;
  color: var(--pp-dark-text);
  background: var(--pp-dark-2);
  border: 1px solid var(--pp-dark-line);
  border-radius: 18px;
  box-shadow: 0 28px 64px rgb(0 0 0 / 0.24);
}

body.pp .pp-guest-flow::before {
  content: none;
}

body.pp .pp-guest-media {
  height: 300px;
  background: var(--pp-dark-2);
}

body.pp .pp-guest-media img {
  object-position: 48% center;
}

body.pp .pp-guest-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--pp-dark-2);
  border-top: 1px solid var(--pp-dark-line);
}

body.pp .pp-guest-state {
  position: static;
  min-width: 0;
  min-height: 126px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 0;
  border-inline-end: 1px solid var(--pp-dark-line);
}

body.pp .pp-guest-state:nth-child(3) {
  border-inline-end: 0;
}

body.pp .pp-guest-state::before {
  content: none;
}

body.pp .pp-guest-glyph {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

body.pp .pp-guest-glyph .pp-icon {
  width: 24px;
  height: 24px;
}

body.pp .pp-guest-state-live .pp-guest-glyph {
  color: #fff;
}

body.pp .pp-guest-control-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 16px 18px;
  border-top: 1px solid var(--pp-dark-line);
}

@media (max-width: 720px) {
  body.pp .pp-story-object,
  body.pp .pp-browser-object,
  body.pp .pp-field-panel,
  body.pp .pp-protocol-object {
    min-height: 0;
  }

  body.pp .pp-browser-object .pp-story-media,
  body.pp .pp-field-panel .pp-story-media {
    height: 280px;
  }

  body.pp .pp-story-steps,
  body.pp .pp-field-legend {
    grid-template-columns: 1fr;
  }

  body.pp .pp-story-step,
  body.pp .pp-field-note {
    min-height: 68px;
    padding: 14px 16px;
    border-inline-end: 0;
    border-bottom: 1px solid var(--pp-line);
  }

  body.pp .pp-story-step:last-child,
  body.pp .pp-field-note:last-child {
    border-bottom: 0;
  }

  body.pp .pp-protocol-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 20px;
  }

  body.pp .pp-protocol-node {
    min-height: 104px;
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-rows: 1fr;
    justify-items: start;
    gap: 16px;
    padding: 18px;
  }

  body.pp .pp-protocol-icon {
    width: 54px;
    height: 54px;
  }

  body.pp .pp-protocol-icon .pp-icon {
    width: 28px;
    height: 28px;
  }

  body.pp .pp-protocol-path {
    min-height: 58px;
    align-content: center;
  }

  body.pp .pp-protocol-path::before {
    inset-inline: 42px;
  }

  body.pp .pp-guest-media {
    height: 250px;
  }

  body.pp .pp-guest-track {
    grid-template-columns: 1fr;
  }

  body.pp .pp-guest-state {
    min-height: 76px;
    padding: 14px 16px;
    border-inline-end: 0;
    border-bottom: 1px solid var(--pp-dark-line);
  }

  body.pp .pp-guest-state:nth-child(3) {
    border-bottom: 0;
  }
}

@media (forced-colors: active) {
  body.pp .pp-icon {
    background: CanvasText;
  }
}
