/* Property Content & Media Automation — live demo (in-browser only, no upload save) */
#pcc-demo.pcc-page {
  scroll-margin-top: 96px;
  padding: clamp(2.25rem, 5vw, 3.75rem) clamp(1rem, 4vw, 1.5rem);
  background:
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    radial-gradient(ellipse 90% 55% at 10% 0%, rgba(37, 99, 235, 0.09), transparent 58%),
    radial-gradient(ellipse 70% 45% at 95% 20%, rgba(14, 165, 233, 0.07), transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 45%, #e2e8f0 100%);
  background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%, 100% 100%;
  color: #0f172a;
}

.pcc__inner {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.pcc__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

@media (max-width: 1023px) {
  .pcc__layout {
    grid-template-columns: 1fr;
  }
}

.pcc__panel {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: clamp(1.25rem, 3vw, 1.65rem);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.9) inset,
    0 18px 48px rgba(15, 23, 42, 0.07);
}

.pcc__eyebrow {
  margin: 0 0 0.35rem;
  font-family: Lexend, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2563eb;
}

.pcc__title {
  margin: 0 0 0.65rem;
  font-family: Syne, Lexend, sans-serif;
  font-size: clamp(1.45rem, 3.4vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.15;
  color: #0f172a;
}

.pcc__title-accent {
  background: linear-gradient(105deg, #1d4ed8, #0369a1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.pcc__lead {
  margin: 0 0 1.1rem;
  font-family: "DM Sans", Lato, sans-serif;
  font-size: 0.95rem;
  line-height: 1.62;
  color: rgba(51, 65, 85, 0.92);
}

.pcc__label {
  display: block;
  margin: 0.85rem 0 0.35rem;
  font-family: Lexend, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #334155;
}

.pcc__label:first-of-type {
  margin-top: 0;
}

.pcc__hint {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  color: rgba(71, 85, 105, 0.88);
  line-height: 1.45;
}

.pcc__drop {
  position: relative;
  border: 2px dashed rgba(37, 99, 235, 0.28);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  background: rgba(37, 99, 235, 0.03);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.pcc__drop:hover,
.pcc__drop.is-drag {
  border-color: rgba(37, 99, 235, 0.5);
  background: rgba(37, 99, 235, 0.06);
}

.pcc__drop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.pcc__drop strong {
  display: block;
  font-family: Lexend, sans-serif;
  font-size: 0.85rem;
  color: #1e40af;
}

.pcc__drop span {
  font-size: 0.78rem;
  color: #64748b;
}

.pcc__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.65rem;
  min-height: 0;
}

.pcc__thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.pcc__input,
.pcc__textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font-family: "DM Sans", Lato, sans-serif;
  font-size: 0.9rem;
  background: #fff;
  color: #0f172a;
}

.pcc__textarea {
  min-height: 88px;
  resize: vertical;
  line-height: 1.5;
}

.pcc__input:focus,
.pcc__textarea:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.pcc__row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

@media (max-width: 520px) {
  .pcc__row2 {
    grid-template-columns: 1fr;
  }
}

.pcc__actions {
  margin-top: 1.1rem;
}

.pcc__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.35rem;
  border-radius: 10px;
  font-family: Lexend, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.pcc__btn--primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  box-shadow: 0 8px 26px rgba(37, 99, 235, 0.35);
}

.pcc__btn--primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-color: rgba(191, 219, 254, 0.85);
  box-shadow: 0 12px 34px rgba(37, 99, 235, 0.42);
}

.pcc__btn--ghost {
  background: #fff;
  color: #334155;
  border-color: rgba(15, 23, 42, 0.12);
}

.pcc__btn--ghost:hover {
  border-color: #93c5fd;
  background: #f8fafc;
}

.pcc__error {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  color: #b91c1c;
  min-height: 1.25em;
}

.pcc__explain {
  position: sticky;
  top: 88px;
}

.pcc__explain-card {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: clamp(1.2rem, 2.8vw, 1.55rem);
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.pcc__explain h3 {
  margin: 0 0 0.5rem;
  font-family: Syne, Lexend, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}

.pcc__explain ul {
  margin: 0;
  padding-left: 1.15rem;
  font-family: "DM Sans", Lato, sans-serif;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(51, 65, 85, 0.92);
}

.pcc__explain li {
  margin-bottom: 0.35rem;
}

.pcc__out-wrap {
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.pcc__out-wrap[hidden] {
  display: none !important;
}

.pcc__out-head {
  margin: 0 0 1rem;
  font-family: Lexend, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #64748b;
}

.pcc__previews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.1rem);
}

@media (max-width: 900px) {
  .pcc__previews {
    grid-template-columns: 1fr;
  }
}

.pcc__preview {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
}

.pcc__preview-cap {
  padding: 0.5rem 0.75rem;
  font-family: Lexend, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #475569;
  background: rgba(241, 245, 249, 0.95);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.pcc__preview-body {
  padding: 0.65rem;
  background: #0f172a;
}

.pcc__preview-body--light {
  background: #f1f5f9;
}

.pcc__preview-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  vertical-align: middle;
}

.pcc__ig-frame {
  max-width: 220px;
  margin: 0 auto;
  border-radius: 20px;
  border: 3px solid #1e293b;
  overflow: hidden;
  background: #020617;
}

.pcc__copy-block {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.pcc__copy-block h4 {
  margin: 0 0 0.45rem;
  font-family: Lexend, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2563eb;
}

.pcc__mono {
  margin: 0;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.78rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
  color: #334155;
}

.pcc__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.pcc__tag {
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.pcc__grid2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 720px) {
  .pcc__grid2 {
    grid-template-columns: 1fr;
  }
}

.pcc__details {
  padding: 1rem 1.05rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.pcc__details-inner {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pcc__details-row {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.5rem;
  font-size: 0.86rem;
}

@media (max-width: 480px) {
  .pcc__details-row {
    grid-template-columns: 1fr;
  }
}

.pcc__details-k {
  margin: 0;
  font-weight: 600;
  color: #64748b;
  font-family: Lexend, sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pcc__details-v {
  margin: 0;
  color: #0f172a;
  font-family: "DM Sans", Lato, sans-serif;
}

.pcc__leads {
  padding: 1rem 1.05rem;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.05), #fff);
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.pcc__leads h4 {
  margin: 0 0 0.65rem;
  font-family: Lexend, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1e40af;
}

.pcc__lead-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 0.84rem;
}

.pcc__lead-row:last-child {
  border-bottom: none;
}

.pcc__lead-name {
  font-weight: 600;
  color: #0f172a;
}

.pcc__lead-meta {
  font-size: 0.75rem;
  color: #64748b;
}

.pcc__lead-score {
  font-family: Lexend, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #059669;
  white-space: nowrap;
}

.pcc__engage {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.15rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.pcc__like {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  font-family: Lexend, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.pcc__like:hover {
  border-color: #f472b6;
  background: #fdf2f8;
}

.pcc__like[aria-pressed="true"] {
  background: #fce7f3;
  border-color: #ec4899;
}

.pcc__sim-note {
  margin: 0;
  flex: 1;
  min-width: 200px;
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.45;
}

.pcc__strip {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  padding: clamp(1.1rem, 2.5vw, 1.45rem) clamp(1rem, 3vw, 1.5rem);
  border-radius: 14px;
  background: linear-gradient(105deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  border: 1px solid rgba(148, 163, 184, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pcc__strip p {
  margin: 0;
  max-width: 36rem;
  font-family: "DM Sans", Lato, sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.92);
}

.pcc__strip strong {
  color: #fff;
}

.pcc__strip a {
  flex-shrink: 0;
}

.pcc__toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 100050;
  max-width: min(420px, calc(100vw - 2rem));
  padding: 0.75rem 1.1rem;
  border-radius: 12px;
  background: #0f172a;
  color: #f8fafc;
  font-size: 0.86rem;
  line-height: 1.45;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.pcc__toast.is-on {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.pcc-exit {
  position: fixed;
  inset: 0;
  z-index: 100040;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.pcc-exit.is-open {
  opacity: 1;
  pointer-events: auto;
}

.pcc-exit__panel {
  width: min(440px, 100%);
  border-radius: 18px;
  padding: clamp(1.35rem, 3vw, 1.75rem);
  background: linear-gradient(165deg, #fff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}

.pcc-exit__panel h2 {
  margin: 0 0 0.5rem;
  font-family: Syne, Lexend, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

.pcc-exit__panel p {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #475569;
}

.pcc-exit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

/* Standalone demo page — bridge hero */
.pcc-bridge {
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 1.5rem);
  background: linear-gradient(168deg, #0f172a 0%, #1e293b 42%, #0f172a 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.pcc-bridge__inner {
  max-width: min(52rem, 100%);
  margin: 0 auto;
  text-align: center;
}

.pcc-bridge__eyebrow {
  margin: 0 0 0.5rem;
  font-family: Lexend, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(147, 197, 253, 0.9);
}

.pcc-bridge__title {
  margin: 0 0 0.85rem;
  font-family: Syne, Lexend, sans-serif;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #f8fafc;
}

.pcc-bridge__accent {
  background: linear-gradient(105deg, #93c5fd, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.pcc-bridge__lead {
  margin: 0 auto 1.35rem;
  max-width: 40rem;
  font-family: "DM Sans", Lato, sans-serif;
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.88);
}

.pcc-bridge__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  align-items: center;
}

.pcc-bridge__actions--grid {
  flex-direction: column;
  align-items: stretch;
  max-width: min(52rem, 100%);
  margin-left: auto;
  margin-right: auto;
  gap: 0.85rem;
}

.pcc-bridge__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  align-items: center;
}

@media (max-width: 520px) {
  .pcc-bridge__row .pcc-bridge__btn {
    flex: 1 1 calc(50% - 0.35rem);
    min-width: min(100%, 168px);
    font-size: 0.65rem;
    padding: 0 0.85rem;
  }

  .pcc-bridge__row .pcc-bridge__btn--link {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 0.15rem;
  }
}

.pcc-bridge__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.25rem;
  border-radius: 10px;
  font-family: Lexend, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pcc-bridge__btn--primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff !important;
  border: 2px solid transparent;
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.35);
}

.pcc-bridge__btn--primary:hover {
  transform: translateY(-2px);
  border-color: rgba(191, 219, 254, 0.7);
}

.pcc-bridge__btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0 !important;
  border: 2px solid rgba(148, 163, 184, 0.35);
}

.pcc-bridge__btn--link {
  background: transparent;
  color: rgba(147, 197, 253, 0.95) !important;
  border: none;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 600;
}

/* Facebook mock */
.pcc__fb-wrap {
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.pcc__subhead {
  margin: 0 0 0.35rem;
  font-family: Syne, Lexend, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
}

.pcc__subhint {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: #64748b;
}

.pcc-fb-mock {
  max-width: 500px;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.pcc-fb-mock__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.pcc-fb-mock__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  flex-shrink: 0;
}

.pcc-fb-mock__name {
  font-family: Lexend, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0f172a;
}

.pcc-fb-mock__meta {
  font-size: 0.72rem;
  color: #64748b;
}

.pcc-fb-mock__img-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  cursor: zoom-in;
  background: #000;
  line-height: 0;
}

.pcc-fb-mock__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
}

.pcc-fb-mock__body {
  padding: 0.75rem 0.9rem 0.5rem;
}

.pcc-fb-mock__text {
  margin: 0;
  font-family: "DM Sans", Lato, sans-serif;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #0f172a;
  white-space: pre-wrap;
  word-break: break-word;
}

.pcc-fb-mock__stats {
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  color: #64748b;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.pcc-fb-mock__stats.is-liked {
  color: #2563eb;
  font-weight: 600;
}

.pcc-fb-mock__bar {
  display: flex;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.pcc-fb-mock__action {
  flex: 1;
  padding: 0.55rem 0.25rem;
  border: none;
  background: transparent;
  font-family: Lexend, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  text-align: center;
}

.pcc-fb-mock__action:hover {
  background: rgba(15, 23, 42, 0.04);
}

.pcc-fb-mock__action--muted {
  cursor: default;
  opacity: 0.85;
}

.pcc-fb-mock__comments {
  padding: 0.5rem 0.9rem 0.85rem;
  background: #f8fafc;
}

.pcc-fb-mock__view-c {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
}

.pcc-fb-c__row {
  font-size: 0.8rem;
  line-height: 1.45;
  color: #334155;
  margin-bottom: 0.35rem;
}

.pcc__ig-open {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
}

.pcc__ig-open--flat {
  border-radius: 8px;
  overflow: hidden;
}

.pcc__listing-headline {
  margin: 0 0 0.5rem;
  font-family: Syne, Lexend, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
}

.pcc__listing-desc {
  white-space: pre-wrap;
}

.pcc__lead-hit {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.55rem 0;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.pcc__lead-hit:hover,
.pcc__lead-hit:focus-visible {
  background: rgba(37, 99, 235, 0.06);
  outline: none;
}

.pcc__lead-hit.is-active {
  background: rgba(37, 99, 235, 0.1);
}

.pcc-buyer-detail {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.04), #fff);
}

.pcc-buyer-detail__title {
  margin: 0 0 0.4rem;
  font-family: Lexend, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
}

.pcc-buyer-detail__name {
  margin: 0 0 0.5rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: #0f172a;
}

.pcc-buyer-detail__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.58;
  color: #334155;
}

/* Lightbox */
.pcc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100060;
  background: rgba(2, 6, 23, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.pcc-lightbox:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}

.pcc-lightbox__img {
  max-width: min(92vw, 1100px);
  max-height: min(78vh, 900px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.pcc-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.pcc-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
}

.pcc-lightbox__nav--prev {
  left: max(0.5rem, env(safe-area-inset-left));
}

.pcc-lightbox__nav--next {
  right: max(0.5rem, env(safe-area-inset-right));
}

.pcc-lightbox__cap {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 0.82rem;
  color: rgba(248, 250, 252, 0.85);
}

/* --- Enterprise results (two-channel layout) --- */
.pcc-results-head {
  margin-bottom: 1.25rem;
  padding: clamp(1.1rem, 2.5vw, 1.45rem) clamp(1.1rem, 2.5vw, 1.35rem);
  border-radius: 14px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #0f172a 100%);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.pcc-results-head__eyebrow {
  margin: 0 0 0.35rem;
  font-family: Lexend, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(147, 197, 253, 0.88);
}

.pcc-results-head__title {
  margin: 0 0 0.4rem;
  font-family: Syne, Lexend, sans-serif;
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -0.02em;
}

.pcc-results-head__lead {
  margin: 0;
  max-width: 46rem;
  font-family: "DM Sans", Lato, sans-serif;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.82);
}

.pcc-watermark-note {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: linear-gradient(165deg, rgba(37, 99, 235, 0.08), rgba(241, 245, 249, 0.95));
  border: 1px solid rgba(37, 99, 235, 0.18);
  font-family: "DM Sans", Lato, sans-serif;
  font-size: 0.84rem;
  line-height: 1.55;
  color: #334155;
}

.pcc-watermark-note strong {
  color: #1e40af;
}

.pcc-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.35rem);
  align-items: stretch;
}

@media (max-width: 960px) {
  .pcc-social-grid {
    grid-template-columns: 1fr;
  }
}

.pcc-channel-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 48px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.pcc-channel-card__head {
  padding: 1rem 1.1rem 0.65rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
}

.pcc-channel-badge {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  font-family: Lexend, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pcc-channel-badge--ig {
  background: linear-gradient(135deg, #f09433, #e6683c 40%, #dc2743 70%, #cc2366 90%, #bc1888);
  color: #fff;
}

.pcc-channel-badge--fb {
  background: #1877f2;
  color: #fff;
}

.pcc-channel-card__title {
  margin: 0 0 0.45rem;
  font-family: Lexend, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.pcc-channel-card__why {
  margin: 0;
  font-family: "DM Sans", Lato, sans-serif;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #475569;
}

.pcc-channel-card__hint {
  margin: 0 1.1rem 0.5rem;
  padding: 0 0.25rem;
}

.pcc-channel-card .pcc-fb-mock {
  max-width: none;
  margin: 0 1rem 0.75rem;
  border-radius: 10px;
}

.pcc-ig-post-mock {
  margin: 0.75rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #020617;
  overflow: hidden;
}

.pcc-ig-post-mock__chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.65rem;
  background: #020617;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pcc-ig-post-mock__dots::before {
  content: '···';
  color: rgba(248, 250, 252, 0.85);
  font-weight: 700;
  letter-spacing: 0.15em;
}

.pcc-ig-post-mock__label {
  font-family: Lexend, sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.65);
}

.pcc-ig-post-mock__icon {
  color: rgba(248, 250, 252, 0.5);
  font-size: 1rem;
}

.pcc-ig-post-mock__media {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: #000;
  cursor: zoom-in;
}

.pcc-ig-post-mock__img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.pcc-ig-post-mock__actions {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 0.75rem;
  font-size: 1.05rem;
  color: rgba(248, 250, 252, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pcc-ig-post-mock__save {
  margin-left: auto;
  opacity: 0.85;
}

.pcc-channel-copy {
  padding: 0.65rem 1rem 0.85rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.pcc-channel-copy__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.pcc-channel-copy__label {
  font-family: Lexend, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}

.pcc-channel-copy__pre {
  flex: 1;
  max-height: 11rem;
  overflow: auto;
  margin: 0;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.76rem;
}

.pcc-channel-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.85rem 1rem 1rem;
  margin-top: auto;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
}

.pcc-channel-card__footer .pcc__btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  text-decoration: none !important;
  white-space: normal;
  line-height: 1.35;
  min-height: 48px;
}

.pcc__btn--mini {
  min-height: 36px;
  padding: 0 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
}

.pcc-enterprise-panel {
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
}

.pcc-enterprise-panel__title {
  margin: 0 0 1rem;
  font-family: Lexend, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #475569;
}

.pcc-enterprise-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 720px) {
  .pcc-enterprise-panel__grid {
    grid-template-columns: 1fr;
  }
}

.pcc-enterprise-card {
  padding: 1rem 1.05rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
}

.pcc-enterprise-card__h {
  margin: 0 0 0.55rem;
  font-family: Lexend, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2563eb;
}

.pcc-enterprise-card .pcc__listing-headline {
  margin: 0 0 0.45rem;
  font-family: Lexend, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}

.pcc-web-hero-thumb {
  margin: 0.65rem 0;
}

.pcc-web-hero-thumb__btn {
  display: block;
  width: 100%;
  max-width: 280px;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  overflow: hidden;
  cursor: zoom-in;
  background: #0f172a;
}

.pcc-web-hero-thumb__img {
  display: block;
  width: 100%;
  height: auto;
}

.pcc-web-hero-thumb__cap {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  color: #64748b;
}

.pcc__grid2--enterprise {
  margin-top: 1.15rem;
}

.pcc-offscreen {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  resize: none !important;
}

.pcc-ig-caption-hint {
  margin: 0 0 0.55rem;
  font-family: "DM Sans", Lato, sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #64748b;
}

.pcc-channel-copy__tags-label {
  margin: 0 0 0.35rem;
  font-family: Lexend, sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
}

.pcc-channel-copy--fb-tools {
  padding-top: 0.85rem;
}

.pcc-ig-post-mock__media--frame {
  width: 100%;
  max-width: min(300px, 100%);
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, #1e293b 0%, #020617 100%);
  border: none;
  cursor: zoom-in;
}

.pcc-ig-post-mock__media--frame .pcc-ig-post-mock__img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  vertical-align: middle;
}

/* Enterprise full-screen generating state */
.pcc-gen-overlay {
  position: fixed;
  inset: 0;
  z-index: 100080;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pcc-gen-overlay[hidden] {
  display: none !important;
}

.pcc-gen-overlay__card {
  width: min(420px, 100%);
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 18px;
  background: linear-gradient(165deg, #0f172a 0%, #1e293b 55%, #0f172a 100%);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.pcc-gen-overlay__mark {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), rgba(14, 165, 233, 0.2));
  border: 1px solid rgba(147, 197, 253, 0.35);
  position: relative;
  animation: pcc-gen-pulse 1.25s ease-in-out infinite;
}

.pcc-gen-overlay__mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 8px;
  border: 2px solid transparent;
  border-top-color: rgba(147, 197, 253, 0.95);
  animation: pcc-gen-spin 0.9s linear infinite;
}

@keyframes pcc-gen-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pcc-gen-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.03);
  }
}

.pcc-gen-overlay__eyebrow {
  margin: 0 0 0.35rem;
  font-family: Lexend, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(147, 197, 253, 0.85);
}

.pcc-gen-overlay__title {
  margin: 0 0 0.5rem;
  font-family: Syne, Lexend, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -0.02em;
}

.pcc-gen-overlay__sub {
  margin: 0 0 1.15rem;
  font-family: "DM Sans", Lato, sans-serif;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(203, 213, 225, 0.88);
}

.pcc-gen-overlay__bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.pcc-gen-overlay__bar-fill {
  display: block;
  height: 100%;
  width: 38%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  animation: pcc-gen-bar 1.1s ease-in-out infinite;
}

@keyframes pcc-gen-bar {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(280%);
  }
}

/* Post-generate “demo vs production” modal */
.pcc-result-modal {
  position: fixed;
  inset: 0;
  z-index: 100090;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.pcc-result-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.pcc-result-modal[hidden] {
  display: none !important;
}

.pcc-result-modal.is-open:not([hidden]) {
  display: flex !important;
}

.pcc-result-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.pcc-result-modal__panel {
  position: relative;
  width: min(480px, 100%);
  max-height: min(88vh, 640px);
  overflow-y: auto;
  padding: clamp(1.35rem, 3vw, 1.75rem);
  border-radius: 18px;
  background: linear-gradient(168deg, #fff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.pcc-result-modal__eyebrow {
  margin: 0 0 0.4rem;
  font-family: Lexend, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2563eb;
}

.pcc-result-modal__title {
  margin: 0 0 0.65rem;
  font-family: Syne, Lexend, sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.pcc-result-modal__body {
  margin: 0 0 0.75rem;
  font-family: "DM Sans", Lato, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #334155;
}

.pcc-result-modal__body--muted {
  font-size: 0.84rem;
  color: #64748b;
}

.pcc-result-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.pcc-result-modal__actions .pcc__btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  text-decoration: none !important;
}

.pcc-result-modal__text-dismiss {
  margin-top: 0.25rem;
  padding: 0.35rem;
  border: none;
  background: none;
  font-family: Lexend, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pcc-result-modal__text-dismiss:hover {
  color: #0f172a;
}

@media (prefers-reduced-motion: reduce) {
  .pcc__btn--primary:hover,
  .pcc__like:hover {
    transform: none;
  }

  .pcc__toast {
    transition: none;
  }

  .pcc-bridge__btn--primary:hover {
    transform: none;
  }

  .pcc-gen-overlay__mark,
  .pcc-gen-overlay__mark::after,
  .pcc-gen-overlay__bar-fill {
    animation: none !important;
  }

  .pcc-result-modal {
    transition: none;
  }
}
