/* PetConnect — animated visual placeholders (no raster images required). */

@keyframes pcFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.5deg); }
}

@keyframes pcGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pcShine {
  0% { transform: translateX(-120%) skewX(-12deg); opacity: 0; }
  15% { opacity: 0.35; }
  50% { transform: translateX(120%) skewX(-12deg); opacity: 0; }
  100% { transform: translateX(120%) skewX(-12deg); opacity: 0; }
}

@keyframes pcPulseRing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(113, 173, 221, 0.45); }
  50% { box-shadow: 0 0 0 14px rgba(113, 173, 221, 0); }
}

@keyframes pcBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(8%, -6%) scale(1.05); }
  66% { transform: translate(-6%, 4%) scale(0.98); }
}

@keyframes pcBarPulse {
  0%, 100% { opacity: 0.35; transform: scaleX(0.92); }
  50% { opacity: 1; transform: scaleX(1); }
}

.pc-viz {
  position: relative;
  isolation: isolate;
}

.pc-viz--motion {
  animation: pcFloat 5.5s ease-in-out infinite;
}

.pc-viz__aurora {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 30% 30%, rgba(113, 173, 221, 0.45), transparent 42%),
    radial-gradient(circle at 70% 60%, rgba(79, 143, 184, 0.35), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(113, 173, 221, 0.2), transparent 40%);
  animation: pcBlob 12s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.pc-viz__shine {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
  z-index: 3;
}

.pc-viz__shine::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: pcShine 4.5s ease-in-out infinite;
}

/* Hero phone mockup */
.pc-viz--hero-phone {
  width: min(100%, 320px);
  margin: 0 auto;
}

.pc-viz--hero-phone .pc-viz__device {
  position: relative;
  z-index: 1;
  border-radius: 2.25rem;
  padding: 0.65rem;
}

.pc-viz--hero-phone .pc-viz__screen {
  border-radius: 1.65rem;
  background: linear-gradient(165deg, #0f172a 0%, #1e293b 45%, #0f172a 100%);
  background-size: 200% 200%;
  animation: pcGradientShift 8s ease infinite;
  min-height: 420px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  overflow: hidden;
}

/* Hero: product screenshot/GIF inside the phone frame (346×480 GIF) */
.pc-viz--hero-phone .pc-viz__screen--banner {
  padding: 0;
  gap: 0;
  min-height: 0;
  background: #0f172a;
  background-size: auto;
  animation: none;
  aspect-ratio: 346 / 480;
}

.pc-viz--hero-phone .pc-viz__screen-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

/*
 * Homepage hero GIF: no faux phone bezel (device padding), no slate fill behind the asset —
 * asset already includes device chrome.
 */
.hero-pc .pc-viz--homepage-banner-media.pc-viz--hero-phone .pc-viz__device {
  padding: 0;
  border-radius: 0;
}

.hero-pc .pc-viz--homepage-banner-media.pc-viz--hero-phone .pc-viz__screen--banner {
  background: transparent;
  border-radius: 0;
  overflow: hidden;
}

.pc-viz__fake-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(113, 173, 221, 0.35);
  transform-origin: left center;
}

.pc-viz__fake-bar:nth-child(1) { width: 42%; animation: pcBarPulse 2.8s ease-in-out infinite; animation-delay: 0s; }
.pc-viz__fake-bar:nth-child(2) { width: 78%; animation: pcBarPulse 2.8s ease-in-out infinite; animation-delay: 0.25s; }
.pc-viz__fake-bar:nth-child(3) { width: 56%; animation: pcBarPulse 2.8s ease-in-out infinite; animation-delay: 0.5s; }
.pc-viz__fake-bar:nth-child(4) { width: 90%; animation: pcBarPulse 2.8s ease-in-out infinite; animation-delay: 0.75s; }

.pc-viz__fake-card {
  margin-top: auto;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(113, 173, 221, 0.25);
}

.pc-viz__fake-card-row {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 0.5rem;
}

.pc-viz__fake-card-row:last-child { margin-bottom: 0; width: 55%; }

/* Solution / section panels */
.pc-viz--panel {
  border-radius: var(--pc-radius, 16px);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(113, 173, 221, 0.18) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(79, 143, 184, 0.12) 100%);
  background-size: 220% 220%;
  animation: pcGradientShift 10s ease infinite;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--pc-shadow, 0 20px 50px rgba(15, 23, 42, 0.08));
}

.pc-viz--panel .pc-viz__icon-ring {
  width: 120px;
  height: 120px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.75rem;
  color: #fff;
  background: var(--pc-gradient, linear-gradient(135deg, #71ADDD 0%, #4f8fb8 100%));
  animation: pcPulseRing 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.pc-viz--panel-wide {
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Screenshot variant: holds a 505×390 PNG illustration ---
   No panel frame — image sits on the section background directly.
   Width is capped below the source's 505 px so the browser never
   upscales, keeping the artwork crisp on retina/HiDPI screens. */
.pc-viz--shot {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.pc-viz__shot-img {
  display: block;
  width: 100%;
  max-width: 380px;
  height: auto;
  margin: 0 auto;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.solution-row:hover .pc-viz__shot-img {
  transform: scale(1.02);
}

@media (max-width: 575px) {
  .pc-viz--shot {
    max-width: 340px;
  }
  .pc-viz__shot-img {
    max-width: 320px;
  }
}

/* Dual phones (mobile section) — screenshots include their own device chrome;
   no outer “case” styling (border/shadow/padding). */
.pc-viz--duo {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}

.pc-viz--duo .pc-viz__phone {
  width: 140px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  animation: pcFloat 4.5s ease-in-out infinite;
}

.pc-viz--duo .pc-viz__phone:nth-child(2) {
  animation-delay: -1.2s;
  width: 155px;
}

.pc-viz--duo .pc-viz__phone-screen {
  border-radius: 0;
  min-height: 0;
  background: transparent;
  overflow: visible;
}

.pc-viz--duo .pc-viz__phone-img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center bottom;
}

/* Inner pages — gentle motion on marketing heroes */
.pc-marketing .pc-hero-visual {
  animation: pcFloat 5.5s ease-in-out infinite;
}

.pc-marketing .pc-highlight-media {
  animation: pcFloat 6.5s ease-in-out infinite;
  animation-delay: -2s;
}

/* Chip float stagger — each chip bobs at a different phase for an organic feel */
.pc-hero-visual .pc-hero-chip.c1 {
  animation: pcFloat 5.5s ease-in-out infinite;
  animation-delay: 0s;
}

.pc-hero-visual .pc-hero-chip.c2 {
  animation: pcFloat 6.2s ease-in-out infinite;
  animation-delay: -2.1s;
}

.pc-hero-visual .pc-hero-chip.c3 {
  animation: pcFloat 5s ease-in-out infinite;
  animation-delay: -3.7s;
}

.pc-hero-visual::before,
.pc-highlight-media::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 40% 40%, rgba(113, 173, 221, 0.2), transparent 50%);
  animation: pcBlob 14s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.pc-hero-visual > *,
.pc-highlight-media > * {
  position: relative;
  z-index: 1;
}

.pc-marketing .pc-hero-visual .pc-hero-icon {
  animation: pcIconGlow 3s ease-in-out infinite;
}

@keyframes pcIconGlow {
  0%, 100% {
    box-shadow: 0 22px 50px rgba(85, 153, 201, 0.35);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 28px 64px rgba(85, 153, 201, 0.55);
    transform: scale(1.04);
  }
}

/* Blog cards */
.pc-blog-card {
  height: 100%;
  border-radius: var(--pc-radius, 16px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.25s ease;
  text-decoration: none !important;
  color: inherit !important;
  display: flex;
  flex-direction: column;
}

.pc-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.1);
  border-color: rgba(113, 173, 221, 0.45);
}

.pc-blog-card__visual {
  height: 160px;
  position: relative;
  overflow: hidden;
  background-color: #eef4f9;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* Brand logo fallback: shrink the wide logo on a soft tinted band so it
   doesn't get cropped or stretched like a real photo would. */
.pc-blog-card__visual--logo {
  background-size: 55% auto;
  background-color: #f4f8fc;
  background-image: linear-gradient(135deg, #eef5fb 0%, #ffffff 50%, #eaf2f9 100%);
  /* The inline style on the element re-sets background-image to the logo URL,
     so the gradient above is mostly a fallback when JS removes the inline. */
}
.pc-blog-card__visual--logo::after {
  display: none;
}

.pc-blog-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: pcShine 7s ease-in-out infinite;
}

.pc-blog-card__body {
  padding: 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pc-blog-card__meta {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pc-primary-dark, #5599c9);
  margin-bottom: 0.35rem;
}

.pc-blog-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--pc-ink, #0f172a);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.pc-blog-card__excerpt {
  font-size: 0.92rem;
  color: var(--pc-muted, #64748b);
  flex: 1;
}

.pc-blog-card__more {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--pc-primary-dark, #5599c9);
}

/* Post body prose */
.pc-post-prose {
  max-width: 60rem;
  margin: 0 auto;
}

/* Blog post layout — header and comments are full container width;
   post body sits on the left with the sidebar on the right at lg+. */
.pc-blog-post-shell {
  max-width: 1280px;
}

.pc-blog-post-page .pc-post-prose {
  max-width: none;
  margin: 0;
}

.pc-blog-post-page .pc-blog-main {
  min-width: 0; /* prevent flex/grid overflow from long content */
}

/* Long-post collapse: show only the first ~520 px until the reader clicks
   "Read full post". Content stays in the DOM (good for SEO and copy/paste);
   we just hide the overflow with a soft white fade-out. */
.pc-post-prose--collapsed {
  position: relative;
  max-height: 540px;
  overflow: hidden;
}
.pc-post-prose--collapsed::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 200px;
  pointer-events: none;
  background: linear-gradient(180deg,
              rgba(255, 255, 255, 0)   0%,
              rgba(255, 255, 255, 0.85) 55%,
              #ffffff 100%);
}

.pc-post-readmore {
  position: relative;
  z-index: 2;
  padding: 1rem 0;
}
.pc-post-readmore__btn {
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(44, 182, 236, 0.28);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.pc-post-readmore__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(44, 182, 236, 0.34);
}

@media (max-width: 575.98px) {
  /* Slightly shorter preview on phones — they have less screen real-estate. */
  .pc-post-prose--collapsed {
    max-height: 420px;
  }
  .pc-post-prose--collapsed::after {
    height: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-post-readmore__btn {
    transition: none;
  }
  .pc-post-readmore__btn:hover {
    transform: none;
  }
}

/* Share row — small icon-only chips, brand-colored. */
.pc-post-share {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.pc-post-share__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.06);
  color: var(--pc-muted, #64748b);
  font-size: 0.78rem;
  flex: 0 0 auto;
}
.pc-post-share__buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.pc-post-share__btn {
  --pc-share-color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  color: var(--pc-share-color);    /* icon shows the brand color by default */
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.12s ease, box-shadow 0.12s ease;
}
.pc-post-share__btn i {
  font-size: 0.82rem;
  line-height: 1;
}
.pc-post-share__btn:hover,
.pc-post-share__btn:focus-visible {
  background: var(--pc-share-color);
  color: #ffffff;
  border-color: var(--pc-share-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
  outline: none;
}
/* Hide the label spans visually but keep them in the DOM for screen readers. */
.pc-post-share__btnlabel {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.pc-post-share__btn--copy {
  --pc-share-color: #64748b;
}
.pc-post-share__btn--copy.is-copied {
  background: #10b981;
  color: #ffffff;
  border-color: #10b981;
}
.pc-post-share__btn--native {
  --pc-share-color: var(--pc-primary, #2cb6ec);
  border-color: rgba(44, 182, 236, 0.45);
}

/* End-of-post share block — same primitives, but presented as a centered
   call-out at the bottom of the article. Larger chips and a visible heading
   so it reads as a deliberate "share this post" affordance after the read. */
.pc-post-share--end {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.pc-post-share--end .pc-post-share__end-title {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--pc-muted, #64748b);
  letter-spacing: 0.01em;
}
.pc-post-share--end .pc-post-share__end-title i {
  color: var(--pc-primary, #2cb6ec);
  font-size: 1rem;
}
.pc-post-share--end .pc-post-share__buttons {
  gap: 8px;
  justify-content: center;
}
.pc-post-share--end .pc-post-share__btn {
  width: 38px;
  height: 38px;
}
.pc-post-share--end .pc-post-share__btn i {
  font-size: 0.95rem;
}

@media (max-width: 767.98px) {
  /* On mobile, the share strip wraps to its own line below the meta row.
     Center it so it reads as a deliberate "share this post" affordance. */
  .pc-post-share {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    gap: 0.5rem;
  }
  .pc-post-share__buttons {
    justify-content: center;
  }
  .pc-post-share--end .pc-post-share__end-title {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-post-share__btn {
    transition: none;
  }
  .pc-post-share__btn:hover,
  .pc-post-share__btn:focus-visible {
    transform: none;
  }
}

/* "Not shown publicly" pill under email/phone fields in the comment form. */
.pc-comment-private-note {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.4rem;
  padding: 0.18rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.3;
  color: #0369a1;
  background: rgba(14, 165, 233, 0.09);
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: 999px;
  letter-spacing: 0.01em;
}
.pc-comment-private-note i {
  font-size: 0.62rem;
  opacity: 0.85;
}

/* Reading progress bar — subtle blue line at the top of the viewport that
   fills as the reader scrolls through the post. */
.pc-blog-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1100;
  background: transparent;
  pointer-events: none;
}
.pc-blog-progress > span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--pc-primary, #2cb6ec);
  transition: width 0.05s linear;
}

.pc-blog-post-header {
  /* full width inside the container */
}
.pc-blog-post-header h1 {
  font-size: clamp(1.4rem, 1.1rem + 1.1vw, 1.85rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--pc-ink, #0f172a);
}

/* Inline meta row under the title: author chip · date · read time · tags */
.pc-blog-post-meta .pc-blog-author-byline {
  margin: 0 !important;
  padding: 0;
  border: 0;
}
.pc-blog-post-meta .pc-blog-author-byline > div:first-child {
  width: 32px !important;
  height: 32px !important;
}
.pc-blog-post-meta .pc-blog-author-byline > div:first-child span {
  font-size: 0.65rem !important;
}
.pc-blog-post-meta .pc-blog-author-byline > div:last-child p:first-child {
  display: none;
}
.pc-blog-post-meta .pc-blog-author-byline > div:last-child p:last-child {
  font-size: 0.875rem !important;
  font-weight: 600;
}
.pc-blog-post-meta-sep {
  display: inline-block;
  width: 1px;
  height: 18px;
  background: rgba(15, 23, 42, 0.12);
}
.pc-blog-post-meta .badge {
  font-size: 0.72rem;
  padding: 0.32rem 0.6rem;
  color: var(--pc-slate, #334155);
  background: #f1f5f9 !important;
  border: 1px solid rgba(15, 23, 42, 0.05);
}
.pc-blog-post-meta .badge:hover {
  background: #e2e8f0 !important;
  color: var(--pc-ink, #0f172a);
}

.pc-blog-post-footer {
  /* full width below the post+sidebar row */
}

@media (min-width: 992px) {
  .pc-blog-post-shell {
    padding-top: 1rem;
    padding-bottom: 3rem;
  }
}

/* Recent posts sidebar */
.pc-blog-aside-col {
  /* Slightly more breathing room from the main column on wide screens */
}
@media (min-width: 992px) {
  .pc-blog-aside-col {
    padding-left: 1.25rem;
  }
}

.pc-blog-aside {
  position: sticky;
  top: 96px;
}

.pc-blog-aside-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1rem;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px rgba(15, 23, 42, 0.06);
}

.pc-blog-aside-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pc-primary-dark, #5599c9);
  margin: 0 0 0.85rem;
  padding-bottom: 0;
  border-bottom: 0;
}

.pc-blog-aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pc-blog-aside-item {
  padding: 0.45rem 0;
}
.pc-blog-aside-item + .pc-blog-aside-item {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.pc-blog-aside-item:first-child {
  padding-top: 0.15rem;
}
.pc-blog-aside-item:last-child {
  padding-bottom: 0.15rem;
}

.pc-blog-aside-link {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
}
.pc-blog-aside-link:hover .pc-blog-aside-headline {
  color: var(--pc-primary, #2cb6ec);
}

.pc-blog-aside-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e5edf3;
}

.pc-blog-aside-thumb--logo {
  background-size: 78% auto;
  background-color: #f4f8fc;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.pc-blog-aside-body {
  flex: 1;
  min-width: 0;
}

.pc-blog-aside-headline {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--pc-ink, #0f172a);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s ease;
}

.pc-blog-aside-meta {
  font-size: 0.72rem;
  color: var(--pc-muted, #64748b);
  margin-top: 0.2rem;
}

/* Blog index toolbar — simple */
.pc-blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.pc-blog-toolbar__search {
  position: relative;
  flex: 0 1 320px;
  min-width: 200px;
  max-width: 360px;
}
.pc-blog-toolbar__search-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: var(--pc-muted, #94a3b8);
  font-size: 0.82rem;
  pointer-events: none;
}
.pc-blog-toolbar__input {
  width: 100%;
  height: 38px;
  padding: 0 36px 0 34px;
  font-size: 0.875rem;
  color: var(--pc-ink, #0f172a);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.pc-blog-toolbar__input::placeholder {
  color: var(--pc-muted, #94a3b8);
}
.pc-blog-toolbar__input:focus {
  border-color: var(--pc-primary, #2cb6ec);
  box-shadow: 0 0 0 3px rgba(44, 182, 236, 0.15);
}
.pc-blog-toolbar__input::-webkit-search-cancel-button {
  display: none;
}
.pc-blog-toolbar__clear {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pc-muted, #94a3b8);
  background: transparent;
  text-decoration: none;
  font-size: 0.7rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.pc-blog-toolbar__clear:hover {
  background: rgba(15, 23, 42, 0.06);
  color: var(--pc-ink, #0f172a);
}

.pc-blog-toolbar__sort {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
}
.pc-blog-toolbar__sort-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pc-muted, #64748b);
}
.pc-blog-toolbar__select {
  height: 38px;
  padding: 0 28px 0 10px;
  font-size: 0.85rem;
  color: var(--pc-ink, #0f172a);
  background-color: #ffffff;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2364748b'%3e%3cpath d='M3.2 5.8a1 1 0 0 1 1.4 0L8 9.2l3.4-3.4a1 1 0 1 1 1.4 1.4l-4.1 4.1a1 1 0 0 1-1.4 0L3.2 7.2a1 1 0 0 1 0-1.4z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 14px 14px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.pc-blog-toolbar__select:focus {
  border-color: var(--pc-primary, #2cb6ec);
  box-shadow: 0 0 0 3px rgba(44, 182, 236, 0.15);
}

.pc-blog-toolbar__reset {
  font-size: 0.8rem;
  color: var(--pc-muted, #64748b);
  text-decoration: none;
}
.pc-blog-toolbar__reset:hover {
  color: var(--pc-primary, #2cb6ec);
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  /* Keep search + sort on the same row so the toolbar reads as a single,
     deliberate filter strip. Sort collapses to a compact pill showing just
     the current value (no "Sort" label competing for attention). */
  .pc-blog-toolbar {
    gap: 0.5rem;
    align-items: stretch;
  }
  .pc-blog-toolbar__search {
    flex: 1 1 200px;
    min-width: 0;
    max-width: none;
  }
  .pc-blog-toolbar__sort {
    margin-left: 0;
    flex: 0 0 auto;
    gap: 0;
  }
  .pc-blog-toolbar__sort-label {
    /* Visually hidden but kept in the DOM for the <label for=…> association. */
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0);
    white-space: nowrap; border: 0;
  }
  .pc-blog-toolbar__input,
  .pc-blog-toolbar__select {
    height: 42px;             /* easier to tap; matched heights look paired */
    font-size: 0.95rem;       /* avoid iOS auto-zoom on focus (>=16px helps) */
  }
  .pc-blog-toolbar__select {
    width: 150px;
    max-width: 150px;
    padding: 0 30px 0 12px;
    background-position: right 10px center;
  }
  .pc-blog-toolbar__reset {
    flex: 1 1 100%;           /* always drops below the search/sort row */
    text-align: center;
    padding: 0.4rem 0 0;
  }
}

@media (max-width: 379.98px) {
  /* Extra-narrow phones (< 380 px): give each control its own full-width row. */
  .pc-blog-toolbar__search,
  .pc-blog-toolbar__sort {
    flex: 1 1 100%;
  }
  .pc-blog-toolbar__select {
    width: 100%;
    max-width: none;
  }
}

/* Live search dropdown — sits inside .pc-blog-toolbar__search (position:relative). */
.pc-blog-livesearch__panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 50;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12), 0 2px 6px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  max-height: 70vh;
  display: flex;
  flex-direction: column;
  min-width: 320px;
}
.pc-blog-livesearch__results {
  overflow-y: auto;
  max-height: calc(70vh - 56px);
}
.pc-blog-livesearch__loading,
.pc-blog-livesearch__empty {
  padding: 14px 16px;
  font-size: 0.85rem;
  color: var(--pc-muted, #64748b);
}
.pc-blog-livesearch__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 14px;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  transition: background-color 0.12s ease;
}
.pc-blog-livesearch__item:first-child {
  border-top: 0;
}
.pc-blog-livesearch__item:hover,
.pc-blog-livesearch__item.is-active,
.pc-blog-livesearch__item:focus {
  background: rgba(44, 182, 236, 0.08);
  outline: none;
}
.pc-blog-livesearch__thumb {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background-color: #f1f5f9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.pc-blog-livesearch__thumb--logo {
  background-size: 78% auto;
  background-position: center;
  background-color: #f4f8fc;
  background-image: linear-gradient(135deg, #eef5fb 0%, #ffffff 50%, #eaf2f9 100%);
}
.pc-blog-livesearch__thumb--blank {
  background-image: none;
}
.pc-blog-livesearch__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1 1 auto;
}
.pc-blog-livesearch__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pc-ink, #0f172a);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pc-blog-livesearch__meta {
  font-size: 0.75rem;
  color: var(--pc-muted, #64748b);
  margin-top: 2px;
}
.pc-blog-livesearch__hit {
  background: rgba(44, 182, 236, 0.22);
  color: inherit;
  padding: 0 1px;
  border-radius: 2px;
}
.pc-blog-livesearch__seeall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pc-primary, #2cb6ec);
  background: #f8fafc;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  text-decoration: none;
  transition: background-color 0.12s ease;
}
.pc-blog-livesearch__seeall:hover {
  background: rgba(44, 182, 236, 0.10);
  color: var(--pc-primary, #2cb6ec);
}

@media (max-width: 767.98px) {
  .pc-blog-livesearch__panel {
    /* On phones the input is full-width; keep the panel inside the input but
       let it scroll comfortably and reach lower into the viewport. */
    left: 0;
    right: 0;
    min-width: 0;
    max-height: 65vh;
  }
  .pc-blog-livesearch__results {
    max-height: calc(65vh - 56px);
  }
  .pc-blog-livesearch__thumb {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }
  .pc-blog-livesearch__title {
    font-size: 0.95rem;       /* slightly larger for touch readability */
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-blog-livesearch__item,
  .pc-blog-livesearch__seeall {
    transition: none;
  }
}

/* Blog pagination */
.pc-blog-pagination {
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}
.pc-blog-pagination .page-item {
  margin: 0;
}
.pc-blog-pagination .page-link {
  border-radius: 10px;
  margin: 0;
  padding: 0.5rem 0.95rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--pc-slate, #334155);
  font-weight: 600;
  min-width: 42px;
  text-align: center;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.pc-blog-pagination .page-link:hover {
  transform: translateY(-1px);
}
.pc-blog-pagination .page-link:hover {
  background: rgba(44, 182, 236, 0.08);
  border-color: var(--pc-primary, #2cb6ec);
  color: var(--pc-primary-dark, #5599c9);
}
.pc-blog-pagination .page-item.active .page-link {
  background: var(--pc-primary, #2cb6ec);
  border-color: var(--pc-primary, #2cb6ec);
  color: #fff;
}
.pc-blog-pagination .page-item.disabled .page-link {
  color: rgba(15, 23, 42, 0.35);
  background: transparent;
  border-color: rgba(15, 23, 42, 0.06);
}

.pc-blog-aside-foot {
  display: inline-flex;
  align-items: center;
  margin-top: 0.85rem;
  padding-top: 0;
  border-top: 0;
  width: 100%;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pc-primary-dark, #5599c9);
  text-decoration: none;
}
.pc-blog-aside-foot:hover {
  color: var(--pc-primary, #2cb6ec);
}

.pc-post-prose h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 2rem 0 0.75rem;
  color: var(--pc-ink, #0f172a);
}

.pc-post-prose p,
.pc-post-prose li {
  color: var(--pc-slate, #334155);
  line-height: 1.75;
}

.pc-post-prose ul {
  padding-left: 1.25rem;
}

@media (prefers-reduced-motion: reduce) {
  .pc-viz--motion,
  .pc-viz__aurora,
  .pc-viz__shine::after,
  .pc-viz--hero-phone .pc-viz__screen,
  .pc-viz__fake-bar,
  .pc-viz--panel,
  .pc-viz--duo .pc-viz__phone,
  .pc-viz--duo .pc-viz__phone-screen,
  .pc-marketing .pc-hero-visual,
  .pc-marketing .pc-highlight-media,
  .pc-marketing .pc-hero-visual .pc-hero-icon,
  .pc-hero-visual::before,
  .pc-highlight-media::before,
  .pc-blog-card__visual,
  .pc-blog-card__visual::after {
    animation: none !important;
  }

  .pc-viz--motion {
    transform: none;
  }

  .pc-blog-card:hover {
    transform: none;
  }

  .pc-viz__shot-img,
  .solution-row:hover .pc-viz__shot-img {
    transition: none;
    transform: none;
  }

}

/* Footer newsletter signup */
.pc-newsletter-signup {
  max-width: 26rem;
}
.pc-newsletter-signup__card {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.pc-newsletter-signup__head {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}
.pc-newsletter-signup__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(44, 182, 236, 0.15);
  color: #7dd3fc;
  font-size: 0.95rem;
}
.pc-newsletter-signup__title {
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: #f8fafc;
  letter-spacing: -0.005em;
}
.pc-newsletter-signup__lead {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(248, 250, 252, 0.65);
  line-height: 1.45;
}
.pc-newsletter-signup__form {
  width: 100%;
}
.pc-newsletter-signup__group {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 46px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.pc-newsletter-signup__group:focus-within {
  border-color: rgba(44, 182, 236, 0.7);
  background: rgba(2, 6, 23, 0.55);
  box-shadow: 0 0 0 3px rgba(44, 182, 236, 0.20);
}
.pc-newsletter-signup__field-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(248, 250, 252, 0.40);
  font-size: 0.82rem;
  pointer-events: none;
  transition: color 0.15s ease;
}
.pc-newsletter-signup__group:focus-within .pc-newsletter-signup__field-icon {
  color: rgba(125, 211, 252, 0.9);
}
.pc-newsletter-signup__input.form-control {
  flex: 1 1 auto;
  height: 100%;
  min-width: 0;
  padding: 0 56px 0 40px;
  border: 0;
  background: transparent;
  color: #f8fafc;
  font-size: 0.9rem;
  box-shadow: none;
  outline: none;
}
.pc-newsletter-signup__input.form-control:focus {
  background: transparent;
  color: #f8fafc;
  box-shadow: none;
}
.pc-newsletter-signup__input.form-control::placeholder {
  color: rgba(248, 250, 252, 0.40);
}
.pc-newsletter-signup__btn {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--pc-primary, #2cb6ec);
  color: #ffffff;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.12s ease;
}
.pc-newsletter-signup__btn:hover,
.pc-newsletter-signup__btn:focus-visible {
  background: #1aa5db;
  color: #ffffff;
  outline: none;
  transform: translateY(-50%) scale(1.05);
}
.pc-newsletter-signup__btn:active {
  transform: translateY(-50%) scale(0.96);
}
.pc-newsletter-signup__fine {
  margin: 0.65rem 0 0;
  font-size: 0.7rem;
  color: rgba(248, 250, 252, 0.50);
  line-height: 1.5;
}
.pc-newsletter-signup__fine a {
  color: rgba(125, 211, 252, 0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(125, 211, 252, 0.35);
}
.pc-newsletter-signup__fine a:hover {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}
.footer-pc .pc-newsletter-flash {
  font-size: 0.82rem;
  padding: 0.55rem 0.85rem;
  margin-bottom: 0.75rem !important;
}
.pc-newsletter-signup__form--busy {
  opacity: 0.85;
  transition: opacity 0.15s ease;
}
.pc-newsletter-signup__form--busy .pc-newsletter-signup__btn:disabled {
  cursor: wait;
}
.pc-newsletter-signup__btn-spinner {
  display: none;
  font-size: 0.95rem;
}
.pc-newsletter-signup__btn.is-busy .pc-newsletter-signup__btn-icon {
  display: none;
}
.pc-newsletter-signup__btn.is-busy .pc-newsletter-signup__btn-spinner {
  display: inline-block;
}
.pc-newsletter-signup__btn.is-busy {
  background: #1aa5db;
  cursor: wait;
}
.pc-newsletter-signup__btn.is-busy:hover,
.pc-newsletter-signup__btn.is-busy:focus-visible,
.pc-newsletter-signup__btn.is-busy:active {
  background: #1aa5db;
  transform: translateY(-50%);
}

@media (max-width: 575.98px) {
  .pc-newsletter-signup {
    /* Center the whole signup block on phones with comfortable left/right
       breathing room, instead of hugging the left edge of the brand col. */
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    text-align: center;
  }
  .pc-newsletter-signup__head {
    justify-content: center;
    text-align: left;
  }
  .pc-newsletter-signup__fine {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-newsletter-signup__btn {
    transition: none;
  }
  .pc-newsletter-signup__btn:hover,
  .pc-newsletter-signup__btn:focus-visible,
  .pc-newsletter-signup__btn:active {
    transform: translateY(-50%);
  }
}

/* Footer CTA row: Follow + social */
.footer-pc__cta-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-pc__cta-row-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer-pc__cta-row .footer-pc__social {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
}
.footer-pc__cta-row .footer-pc__social-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.55);
  white-space: nowrap;
  margin: 0;
}

@media (max-width: 767.98px) {
  .footer-pc__cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }
  .footer-pc__cta-row-end {
    justify-content: center;
  }
}
