/* ============================================================
   BRIDGPOINT — "Product" concept design system
   Inspired by: Linear, Attio, Ramp, Clay — confident type,
   bold single accent color, custom SVG illustration instead
   of stock photography, product-card language.
   ============================================================ */

:root {
  --p-bg: #FAFAFC;
  --p-bg-alt: #F3F0FF;
  --p-ink: #14121F;
  --p-ink-80: rgba(20, 18, 31, 0.8);
  --p-ink-60: rgba(20, 18, 31, 0.6);
  --p-ink-45: rgba(20, 18, 31, 0.45);
  --p-ink-25: rgba(20, 18, 31, 0.12);
  --p-white: #FFFFFF;
  --p-accent: #6C4CFF;
  --p-accent-dark: #4B2FDB;
  --p-accent-light: #8F73FF;
  --p-accent-soft: #EDE7FF;
  --p-accent-soft-2: #E1D9FF;
  --p-line: rgba(20, 18, 31, 0.09);
  --p-radius-lg: 22px;
  --p-radius-md: 16px;
  --p-radius-sm: 10px;
  --p-shadow-sm: 0 1px 2px rgba(20, 18, 31, 0.04), 0 2px 8px rgba(20, 18, 31, 0.05);
  --p-shadow-md: 0 4px 14px rgba(20, 18, 31, 0.06), 0 16px 40px rgba(20, 18, 31, 0.08);
  --p-shadow-accent: 0 12px 32px rgba(108, 76, 255, 0.28);
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body.product {
  margin: 0;
  position: relative;
  background: var(--p-bg);
  color: var(--p-ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Note: intentionally opacity-only (no transform) — a transform on body would make it
   the containing block for position:fixed descendants like .p-fixed-arc, pinning the
   arch to the bottom of the document instead of the viewport. */

/* ---------- Single fixed bridge-arch watermark ----------
   ONE arch, present once per page, pinned to the viewport (position:fixed)
   so it stays with you as you scroll rather than being tied to any one
   section. It draws itself in once on load, then the spark glides along
   it in a smooth, continuous loop (SMIL animateMotion) entirely on its
   own timer — independent of scroll position. */
.p-fixed-arc {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 34vh;
  max-height: 300px;
  min-height: 160px;
  pointer-events: none;
  z-index: -1;
  overflow: visible;
}

.p-fixed-arc svg {
  width: 100%;
  height: 100%;
  display: block;
}

.p-fixed-arc .arc-line {
  fill: none;
  stroke: var(--p-accent);
  stroke-opacity: 0.3;
  stroke-width: 1.75;
}

.p-fixed-arc .arc-spark {
  fill: var(--p-accent);
  filter: drop-shadow(0 0 6px var(--p-accent)) drop-shadow(0 0 16px rgba(108, 76, 255, 0.5));
}

@media (max-width:640px) {
  .p-fixed-arc {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-fixed-arc .arc-spark {
    display: none;
  }

  .p-fixed-arc .arc-line {
    stroke-dashoffset: 0 !important;
    transition: none !important;
  }
}

/* ---------- Custom cursor accent (desktop, pointer:fine only) ---------- */
.p-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--p-accent);
  pointer-events: none;
  z-index: 9999999999999999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .3s ease, width .25s cubic-bezier(.2, .8, .2, 1), height .25s cubic-bezier(.2, .8, .2, 1), background-color .25s;
}

.p-cursor-dot.visible {
  opacity: 0.85;
}

.p-cursor-dot.hover {
  width: 42px;
  height: 42px;
  background: var(--p-accent-soft);
  opacity: 0.7;
}

@media (hover:none),
(pointer:coarse) {
  .p-cursor-dot {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-cursor-dot {
    display: none !important;
  }
}

/* Magnetic buttons rely on JS-set inline transform; keep a smooth easing curve */
.p-btn {
  will-change: transform;
}

.p-btn.magnet-active {
  transition: transform .15s cubic-bezier(.2, .8, .2, 1), background .25s, box-shadow .25s, color .25s;
}

.p-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Type ---------- */
body.product h1,
body.product h2,
body.product h3,
body.product h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  color: var(--p-ink);
}

body.product h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

body.product h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

body.product h3 {
  font-size: 1.3rem;
}

body.product p {
  margin: 0;
  line-height: 1.6;
  color: var(--p-ink-60);
  font-size: 1.02rem;
}


.p-head {
  max-width: 680px;
  margin-bottom: 56px;
}

.p-head p {
  margin-top: 18px;
  font-size: 1.12rem;
}

.p-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- Buttons ---------- */
.p-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.96rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.25s cubic-bezier(.2, .8, .2, 1), box-shadow 0.25s, background 0.25s, color .25s;
  cursor: pointer;
}

.p-btn-primary {
  background: var(--p-ink);
  color: #fff;
  box-shadow: var(--p-shadow-sm);
}

.p-btn-primary:hover {
  background: var(--p-accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--p-shadow-accent);
}

.p-btn-accent {
  background: var(--p-accent);
  color: white;
  box-shadow: var(--p-shadow-accent);
}

.p-btn-accent:hover {
  background: var(--p-accent-dark);
  transform: translateY(-2px);
}

.p-btn-ghost {
  background: transparent;
  color: var(--p-ink);
  border-color: var(--p-ink-25);
}

.p-btn-ghost:hover {
  border-color: var(--p-ink);
  transform: translateY(-2px);
}

.p-btn-white {
  background: #fff;
  color: var(--p-accent-dark);
}

.p-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.p-btn svg {
  width: 15px;
  height: 15px;
  transition: transform .25s;
}

.p-btn:hover svg {
  transform: translateX(3px);
}

/* ---------- Nav ---------- */
.p-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 252, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}

.p-nav.scrolled {
  border-color: var(--p-line);
  box-shadow: 0 1px 0 rgba(20, 18, 31, 0.02);
}

.p-nav .p-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.p-nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.p-nav-logo img {
  height: 26px;
  display: block;
}

.p-nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}

.p-nav-links a {
  color: var(--p-ink-70);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 100px;
  transition: background .2s, color .2s;
}

.p-nav-links a:hover,
.p-nav-links a.active {
  background: var(--p-ink);
  color: #fff;
}

.p-nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.p-nav-toggle {
  display: none;
}

@media (max-width:900px) {
  .p-nav-links {
    display: none;
  }

  .p-nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
  }

  .p-nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--p-ink);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
  }

  .p-nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .p-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .p-nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

.p-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 10px 20px 20px;
  background: var(--p-bg);
  border-bottom: 1px solid var(--p-line);
}

.p-mobile-menu.open {
  display: flex;
}

.p-mobile-menu a {
  padding: 12px 4px;
  color: var(--p-ink);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--p-line);
}

/* ---------- Sections ---------- */
.p-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.p-section>.p-container {
  position: relative;
  z-index: 1;
}

.p-section.tight {
  padding: 80px 0;
}

.p-section.alt {
  background: var(--p-bg-alt);
}

.p-section.dark {
  background: var(--p-ink);
  color: #fff;
}

.p-section.dark p {
  color: rgba(255, 255, 255, 0.62);
}

.p-section.dark h2,
.p-section.dark h3 {
  color: #fff;
}

/* ---------- Hero ---------- */
.p-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.p-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.p-hero-copy {
  position: relative;
  z-index: 1;
}

.p-hero-visual {
  position: relative;
  z-index: 1;
}

.p-hero-copy p {
  font-size: 1.15rem;
  margin-top: 20px;
  max-width: 520px;
}

.p-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.p-hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  font-size: 0.88rem;
  color: var(--p-ink-45);
}

.p-hero-note .avatars {
  display: flex;
}

.p-hero-note .avatars span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--p-accent-soft-2);
  border: 2px solid var(--p-bg);
  margin-left: -8px;
  display: inline-block;
}

.p-hero-note .avatars span:first-child {
  margin-left: 0;
}

.p-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  opacity: 0.55;
}

.p-orb-1 {
  width: 420px;
  height: 420px;
  top: -140px;
  right: -120px;
}

.p-orb-2 {
  width: 280px;
  height: 280px;
  bottom: -80px;
  left: -60px;
  opacity: 0.35;
}

/* Hero illustrated "product panel" */
.p-panel {
  position: relative;
  background: #fff;
  border-radius: var(--p-radius-lg);
  box-shadow: var(--p-shadow-md);
  border: 1px solid var(--p-line);
  padding: 22px;
  z-index: 1;
}

.p-panel-chrome {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.p-panel-chrome span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--p-ink-25);
}

.p-panel-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--p-ink-45);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.p-chart-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 120px;
  padding: 0 4px 10px;
}

.p-chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--p-accent-light), var(--p-accent));
  border-radius: 6px 6px 2px 2px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 1s cubic-bezier(.2, .8, .2, 1);
}

.p-panel.in-view .p-chart-bar {
  transform: scaleY(1);
}

.p-stat-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.p-stat-pill {
  flex: 1;
  background: var(--p-bg-alt);
  border-radius: var(--p-radius-sm);
  padding: 14px 16px;
}

.p-stat-pill .n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--p-ink);
}

.p-stat-pill .l {
  font-size: 0.76rem;
  color: var(--p-ink-45);
  margin-top: 2px;
}

.p-float-card-wrap {
  position: absolute;
  z-index: 2;
  will-change: transform;
}

.p-float-card-wrap.a {
  top: -8%;
  left: -12%;
}

.p-float-card-wrap.b {
  bottom: 6%;
  right: -10%;
}

.p-float-card {
  position: relative;
  background: #fff;
  border-radius: var(--p-radius-sm);
  box-shadow: var(--p-shadow-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  border: 1px solid var(--p-line);
}

.p-float-card svg {
  width: 18px;
  height: 18px;
  color: var(--p-accent);
  flex-shrink: 0;
}

@keyframes pfloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Animated micro-elements in Hero Visual */
.p-hero-pulse {
  position: absolute;
  top: 18%;
  right: 12%;
  z-index: 0;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.p-hero-pulse .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--p-accent);
}

.p-hero-pulse .ping {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--p-accent);
  border-radius: 50%;
  animation: radar-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0;
}

.p-hero-shape {
  position: absolute;
  z-index: 0;
  opacity: 0.65;
  pointer-events: none;
  will-change: transform;
}

.p-hero-shape.shape-plus {
  top: 72%;
  left: -6%;
  animation: spin-slow 15s linear infinite;
}

.p-hero-shape.shape-circle {
  top: -6%;
  right: 36%;
  animation: float-slow 7s ease-in-out infinite alternate;
}

.p-hero-arc {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

@keyframes radar-ping {
  0% {
    transform: scale(0.5);
    opacity: 0.85;
  }

  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes float-slow {
  from {
    transform: translateY(0) rotate(0deg);
  }

  to {
    transform: translateY(-10px) rotate(20deg);
  }
}

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

  .p-float-card,
  .p-float-card-wrap,
  .p-hero-pulse,
  .p-hero-shape,
  .p-hero-arc {
    display: none !important;
  }
}

/* ---------- Logo strip ---------- */
.p-logostrip {
  padding: 36px 0;
  border-top: 1px solid var(--p-line);
  border-bottom: 1px solid var(--p-line);
}

.p-logostrip .p-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.p-logostrip-label {
  font-size: 0.78rem;
  color: var(--p-ink-45);
  font-weight: 600;
  white-space: nowrap;
}

.p-marquee {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.p-marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: pmarquee 26s linear infinite;
}

.p-marquee-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--p-ink-25);
  white-space: nowrap;
}

@keyframes pmarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---------- Question / challenge pills ---------- */
.p-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.p-pill {
  background: #fff;
  border: 1px solid var(--p-line);
  border-radius: var(--p-radius-md);
  padding: 20px 22px;
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--p-ink-80);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.p-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--p-shadow-sm);
  border-color: var(--p-accent-soft-2);
}

.p-pill .q {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--p-accent-soft);
  color: var(--p-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ---------- Stepper (How We Think) ---------- */
.p-stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.p-step {
  position: relative;
  padding: 0 20px 0 0;
}

.p-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--p-ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-weight: 700;
}

.p-step:nth-child(4n+2) .p-step-icon {
  background: var(--p-accent);
  color: rgba(255, 255, 255, 0.78);
}

.p-step:nth-child(4n+3) .p-step-icon {
  background: #1F1B33;
}

.p-step:nth-child(4n+4) .p-step-icon {
  background: var(--p-accent-dark);
}

.p-step h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.p-step p {
  font-size: 0.94rem;
}

.p-step-line {
  position: absolute;
  top: 26px;
  left: calc(100% - 20px);
  width: 40px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--p-ink-25) 0 6px, transparent 6px 12px);
}

.p-step:last-child .p-step-line {
  display: none;
}

@media (max-width:900px) {
  .p-stepper {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }

  .p-step-line {
    display: none;
  }
}

/* ---------- Practice cards ---------- */
.p-practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.p-practice-card {
  background: #fff;
  border: 1px solid var(--p-line);
  border-radius: var(--p-radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.p-practice-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--p-shadow-md);
  border-color: transparent;
}

.p-practice-illo {
  height: 120px;
  margin: -4px 0 22px;
}

.p-practice-illo svg {
  width: 100%;
  height: 100%;
}

/* ---------- Photography in practice cards ---------- */
.p-practice-photo {
  position: relative;
  height: 168px;
  border-radius: var(--p-radius-md);
  overflow: hidden;
  margin: -4px 0 22px;
}

.p-practice-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.2, .8, .2, 1);
}

.p-practice-card:hover .p-practice-photo img {
  transform: scale(1.07);
}

.p-practice-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 18, 31, 0) 45%, rgba(20, 18, 31, 0.45) 100%);
}

.p-practice-photo .badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--p-shadow-sm);
}

.p-practice-photo .badge svg {
  width: 17px;
  height: 17px;
  color: var(--p-accent);
}

/* ---------- Photography moment (About / split sections) ---------- */
.p-photo-frame {
  position: relative;
  border-radius: var(--p-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--p-shadow-md);
}

.p-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-practice-num {
  position: absolute;
  top: 24px;
  right: 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--p-ink-25);
}

.p-practice-card h3 {
  margin-bottom: 10px;
}

.p-practice-card p {
  font-size: 0.96rem;
  margin-bottom: 18px;
}

.p-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
}

.p-tag {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--p-bg-alt);
  color: var(--p-ink-60);
}

.p-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--p-ink);
  text-decoration: none;
}

.p-card-link svg {
  width: 14px;
  height: 14px;
  transition: transform .25s;
}

.p-practice-card:hover .p-card-link svg {
  transform: translateX(4px);
}

.p-practice-card:hover .p-card-link {
  color: var(--p-accent);
}

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

/* ---------- Compare (fragmented vs unified) ---------- */
.p-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.p-compare-card {
  border-radius: var(--p-radius-lg);
  padding: 32px;
}

.p-compare-card.frag {
  background: var(--p-bg-alt);
  border: 1px dashed var(--p-ink-25);
}

.p-compare-card.unified {
  background: var(--p-ink);
  color: #fff;
}

.p-compare-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  opacity: 0.6;
}

.p-node-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.p-node {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.96rem;
}

.p-node .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.p-compare-card.frag .p-node .dot {
  background: var(--p-ink-25);
}

.p-compare-card.unified .p-node .dot {
  background: var(--p-accent-light);
}

.p-compare-card p {
  font-size: 0.92rem;
}

.p-compare-card.unified p {
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- Industries grid ---------- */
.p-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.p-tile {
  background: #fff;
  border: 1px solid var(--p-line);
  border-radius: var(--p-radius-md);
  padding: 22px 18px;
  text-decoration: none;
  color: var(--p-ink);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s, box-shadow .25s, background .25s;
}

.p-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--p-shadow-sm);
  background: var(--p-accent-soft);
}

.p-tile svg {
  width: 22px;
  height: 22px;
  color: var(--p-accent);
}

.p-tile span {
  font-weight: 600;
  font-size: 0.92rem;
}

@media (max-width:900px) {
  .p-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Global network illustration ---------- */
.p-globe-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.p-globe-panel {
  position: relative;
  background: var(--p-ink);
  border-radius: var(--p-radius-lg);
  overflow: hidden;
  aspect-ratio: 6/5;
  box-shadow: var(--p-shadow-md);
}

.p-globe-panel svg {
  width: 100%;
  height: 100%;
}

.p-globe-node {
  fill: var(--p-accent-light);
}

.p-globe-node.hi {
  fill: #fff;
}

/* transition removed — stroke-dashoffset is driven entirely by GSAP scrub */
.p-globe-line {
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 1.2;
  fill: none;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

/* in-view no longer controls lines — GSAP does. It only keeps legacy CSS fallback for no-JS. */
.p-globe-panel.in-view .p-globe-line {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.8s ease;
}

.p-globe-pulse {
  fill: none;
  stroke: var(--p-accent-light);
  stroke-width: 1.5;
  opacity: 0;
}

/* Pulse activated by a dedicated JS-toggled class, not in-view, so the two don't conflict */
.p-globe-panel.bp-globe-pulse-active .p-globe-pulse {
  animation: pulse 2.4s ease-out 0.6s infinite;
}

.p-globe-panel.in-view .p-globe-pulse {
  animation: pulse 2.4s ease-out 0.6s infinite;
}

@keyframes pulse {
  0% {
    r: 4;
    opacity: 0.8;
  }

  100% {
    r: 16;
    opacity: 0;
  }
}

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

/* ---------- Metrics ---------- */
.p-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.p-metric-card {
  background: #fff;
  border: 1px solid var(--p-line);
  border-radius: var(--p-radius-md);
  padding: 26px 22px;
}

.p-metric-card .n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--p-accent);
  letter-spacing: -0.02em;
}

.p-metric-card .l {
  font-size: 0.88rem;
  color: var(--p-ink-45);
  margin-top: 6px;
  font-weight: 500;
}

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

/* ---------- Final CTA ---------- */
.p-final {
  background: linear-gradient(135deg, var(--p-accent-dark), var(--p-accent) 60%, #8A6BFF);
  border-radius: 32px;
  margin: 0 24px;
  padding: 90px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
 
}

.p-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12) 0, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0, transparent 40%);
}

.p-final-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
   color:  rgba(255, 255, 255, 0.78);
  margin: 0 auto;
}
.p-final-inner .line{
  color:white;
}

.p-final-inner p{
   color:  rgba(255, 255, 255, 0.78) !important;
}

.p-final h2 {
  color: #fff;
  margin-bottom: 18px;
}

.p-final p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.p-final .p-btn {
  margin-top: 30px;
}

/* ---------- Footer ---------- */
.p-footer {
  background: var(--p-ink);
  color: #fff;
  padding: 70px 0 30px;
  margin-top: 0;
}

.p-footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.p-footer-brand {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.p-footer-brand img {
  height: 30px;

  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

/* qualified with .p-footer so this outweighs the global
   "body.product p { color: var(--p-ink-60) }" text-color reset —
   that rule's selector (body + .product + p) is otherwise more
   specific than a single .p-footer-brand p class+element pair. */
.p-footer .p-footer-brand p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  max-width: 280px;
}

.p-footer-col {
  display: flex;
  flex-direction: column;
}

.p-footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 22px !important;
  font-weight: 600;
}

.p-footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  opacity: 0.92;
  text-decoration: none;
  font-size: 0.92rem;
  margin-bottom: 11px;
  transition: opacity .2s;
}

.p-footer-col a:hover {
  opacity: 1;
}

.p-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.9);
}

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

/* ---------- Reveal (shared mechanism w/ main.js) ---------- */
body.product .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2, .8, .2, 1), transform .7s cubic-bezier(.2, .8, .2, 1);
}

body.product .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Inner-page components
   ============================================================ */

/* ---------- Page hero (inner pages) ---------- */
/* padding-top used to sit under a sticky .p-nav that reserved its own
   76px of layout space, so 70px here was pure breathing room. The nav
   is now position:fixed (shared r-nav) and reserves no space, so this
   padding alone has to clear the ~69px fixed nav height too — bumped
   to match .r-hero's 96px clearance on the redesigned homepage. */
.p-page-hero {
  padding: 126px 0 60px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 860px) {
  .p-page-hero {
    padding-top: 110px;
  }
}

.p-page-hero h1 {
  max-width: 820px;
  margin-bottom: 28px;
}

.p-page-hero .lede {
  max-width: 640px;
  margin-top: 20px;
  font-size: 1.1rem;
}

.p-page-hero .p-prose p {
  margin-bottom: 14px;
}

.p-page-hero .p-prose p.lead {
  margin-top: 4px;
}

.p-page-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ---------- Sticky sub-nav ---------- */
.p-subnav {
  position: relative;
  z-index: 60;
  background: rgba(250, 250, 252, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--p-line);
}

.p-subnav-track {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 14px 0;
  scrollbar-width: none;
}

.p-subnav-track::-webkit-scrollbar {
  display: none;
}

.p-subnav-track a {
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--p-ink-60);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 100px;
  transition: background .2s, color .2s;
}

.p-subnav-track a:hover {
  background: var(--p-accent-soft);
  color: var(--p-accent-dark);
}

.p-subnav-track a.cta {
  background: var(--p-ink);
  color: #fff;
  margin-left: auto;
}

@media (max-width:900px) {
  .p-subnav {
    top: 0;
  }
}

/* ---------- Prose ---------- */
.p-prose {
  max-width: 640px;
}

.p-prose.wide {
  max-width: 760px;
}

.p-prose.center {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.p-prose p {
  margin-bottom: 16px;
  font-size: 1.04rem;
}

.p-prose p:last-child {
  margin-bottom: 0;
}

.p-prose p.lead {
  font-weight: 600;
  color: var(--p-ink);
  font-size: 1.16rem;
}

/* ---------- Split layout ---------- */
.p-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width:900px) {
  .p-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ---------- Generic grids & cards ---------- */
.p-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.p-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.p-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

  .p-grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:640px) {

  .p-grid-2,
  .p-grid-3,
  .p-grid-4 {
    grid-template-columns: 1fr;
  }
}

.p-card {
  background: #fff;
  border: 1px solid var(--p-line);
  border-radius: var(--p-radius-md);
  padding: 26px 24px;
  text-decoration: none;
  color: var(--p-ink);
  display: block;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

a.p-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--p-shadow-sm);
  border-color: var(--p-accent-soft-2);
}

.p-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.p-card p {
  font-size: 0.92rem;
}

.p-card .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--p-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.p-card .icon-wrap svg {
  width: 20px;
  height: 20px;
  color: var(--p-accent);
}

/* ---------- Capability detail block (long-form service pages) ---------- */
.p-cap-detail {
  padding: 36px 0;
  border-top: 1px solid var(--p-line);
}

.p-cap-detail:first-of-type {
  border-top: none;
  padding-top: 0;
}

.p-cap-detail h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.p-cap-detail p {
  font-size: 1rem;
  max-width: 720px;
  margin-bottom: 18px;
}

/* ---------- Bullet list ---------- */
.p-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.p-bullet-list li {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--p-ink-80);
}

.p-bullet-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--p-accent);
  margin-top: 8px;
}

/* ---------- Challenge / FAQ pill grid reuse note: .p-pill-grid already defined ---------- */

/* ---------- Illustrated accent block (why-us style sections) ---------- */
.p-accent-block {
  background: var(--p-accent);
  color: rgba(255, 255, 255, 0.78);
  border-radius: var(--p-radius-lg);
  padding: 56px 50px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(108, 76, 255, 0.15);
  box-shadow: 0 20px 50px rgba(10, 8, 20, 0.3);
}

.p-accent-block h2,
.p-accent-block h3 {
  color: white !important;
}
.p-accent-block p {
  color: rgba(255, 255, 255, 0.75) !important;
}
.p-accent-block .lead{
 color: white !important;
}


.p-accent-block>*:not(.arc-motif) {
  position: relative;
  z-index: 1;
}

/* ---------- Form ---------- */
.p-form {
  background: #fff;
  border: 1px solid var(--p-line);
  border-radius: var(--p-radius-lg);
  padding: 36px;
}

.p-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.p-form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.p-form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--p-ink-70);
}

.p-form-group input,
.p-form-group select,
.p-form-group textarea {
  font-family: var(--font-body);
  font-size: 0.96rem;
  padding: 12px 14px;
  border-radius: var(--p-radius-sm);
  border: 1px solid var(--p-line);
  background: var(--p-bg);
  color: var(--p-ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.p-form-group input:focus,
.p-form-group select:focus,
.p-form-group textarea:focus {
  border-color: var(--p-accent);
  box-shadow: 0 0 0 3px var(--p-accent-soft);
}

.p-form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.p-form button.p-btn {
  width: 100%;
  justify-content: center;
  border: none;
}

.p-form button.p-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.p-btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: p-btn-spin 0.7s linear infinite;
}

@keyframes p-btn-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width:640px) {
  .p-form-row {
    grid-template-columns: 1fr;
  }

  .p-form {
    padding: 24px;
  }
}

.p-info-card {
  background: #fff;
  border: 1px solid var(--p-line);
  border-radius: var(--p-radius-md);
  padding: 22px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.p-info-card .icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--p-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.p-info-card .icon-wrap svg {
  width: 17px;
  height: 17px;
  color: var(--p-accent);
}

.p-info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.p-info-card p {
  font-size: 0.88rem;
}

.p-info-card a {
  color: var(--p-ink);
}

/* ---------- Interactive diagnostic quiz ---------- */
.p-quiz {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--p-line);
  border-radius: var(--p-radius-lg);
  box-shadow: var(--p-shadow-md);
  padding: 46px 50px;
  position: relative;
  overflow: hidden;
}

.p-quiz-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}

.p-quiz-progress span {
  height: 4px;
  flex: 1;
  border-radius: 4px;
  background: var(--p-line);
  transition: background .3s;
}

.p-quiz-progress span.done {
  background: var(--p-accent);
}

.p-quiz-step {
  display: none;
}

.p-quiz-step.active {
  display: block;
  animation: quizIn .4s cubic-bezier(.2, .8, .2, 1);
}

@keyframes quizIn {
  from {
    opacity: 0;
    transform: translateX(14px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.p-quiz-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--p-accent);
  margin-bottom: 10px;
}

.p-quiz-step h3 {
  font-size: 1.4rem;
  margin-bottom: 22px;
}

.p-quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-quiz-option {
  text-align: left;
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--p-radius-sm);
  border: 1px solid var(--p-line);
  background: var(--p-bg);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--p-ink-80);
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-quiz-option:hover {
  border-color: var(--p-accent);
  background: var(--p-accent-soft);
  transform: translateX(3px);
}

.p-quiz-option svg {
  width: 16px;
  height: 16px;
  opacity: 0;
  transition: opacity .2s;
  color: var(--p-accent);
  flex-shrink: 0;
}

.p-quiz-option:hover svg {
  opacity: 1;
}

.p-quiz-back {
  margin-top: 22px;
  background: none;
  border: none;
  font-size: 0.85rem;
  color: var(--p-ink-45);
  cursor: pointer;
  font-family: var(--font-body);
}

.p-quiz-back:hover {
  color: var(--p-ink);
}

.p-quiz-result h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.p-quiz-result p {
  margin-bottom: 24px;
}

.p-quiz-restart {
  background: none;
  border: none;
  font-size: 0.85rem;
  color: var(--p-ink-45);
  cursor: pointer;
  margin-left: 16px;
  font-family: var(--font-body);
}

.p-quiz-restart:hover {
  color: var(--p-ink);
}

@media (max-width:640px) {
  .p-quiz {
    padding: 30px 24px;
  }
}

/* ---------- Lede (standalone emphasis capstone line) ---------- */
.p-lede {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--p-ink);
  max-width: 680px;
  letter-spacing: -0.01em;
}

.p-lede.center {
  margin: 0 auto;
  text-align: center;
}

/* ---------- Small stat/label card (About "What We Believe") ---------- */
.p-belief-card h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--p-ink-45);
  margin-bottom: 10px;
}

.p-belief-card h3 {
  font-size: 1.2rem;
}

/* ---------- 404 error code ---------- */
.p-error-code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(5rem, 14vw, 9rem);
  color: var(--p-accent-soft-2);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}

@media (max-width:640px) {
  .p-container {
    padding: 0 20px;
  }

  .p-pill-grid {
    grid-template-columns: 1fr;
  }

  .p-compare-grid {
    grid-template-columns: 1fr;
  }

  .p-final {
    margin: 0 12px;
    padding: 60px 28px;
    border-radius: 24px;
  }

  .p-footer-top {
    grid-template-columns: 1fr;
  }

  .p-page-hero h1 {
    font-size: 2.2rem;
  }
}

/* ══════════════════════════════════════════
   SCROLL-SCRUB FLOATING INSIGHT CARD
══════════════════════════════════════════ */
#bp-metrics-section {
  position: relative;
  overflow: hidden;
}

.bp-insight-card {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateX(130%) translateY(-50%);
  width: 240px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid rgba(108, 76, 255, 0.14);
  border-radius: 20px;
  padding: 22px 22px 18px;
  box-shadow: 0 8px 40px rgba(108, 76, 255, 0.13), 0 2px 8px rgba(20, 18, 31, 0.06);
  z-index: 10;
  will-change: transform;
  pointer-events: none;
  overflow: hidden;
}

/* Header row */
.bp-insight-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.bp-insight-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--p-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bp-insight-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--p-accent);
}

.bp-insight-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--p-ink-60);
  letter-spacing: 0.01em;
  flex: 1;
}

.bp-insight-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 600;
  color: #16a34a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bp-insight-live span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  animation: bpPulseGreen 1.6s ease-in-out infinite;
}

@keyframes bpPulseGreen {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(0.65);
  }
}

/* Big number */
.bp-insight-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--p-ink);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 2px;
  opacity: 0;
  transform: translateY(12px);
  /* animated by GSAP */
}

.bp-insight-number sup {
  font-size: 1.2rem;
  vertical-align: super;
  color: var(--p-accent);
  font-weight: 800;
}

.bp-insight-sublabel {
  font-size: 0.75rem;
  color: var(--p-ink-45);
  font-weight: 500;
  margin-bottom: 14px;
  opacity: 0;
  /* animated by GSAP */
}

/* Sparkline */
.bp-insight-sparkline {
  height: 40px;
  margin-bottom: 14px;
  overflow: hidden;
}

.bp-insight-sparkline svg {
  width: 100%;
  height: 100%;
}

.bp-spark-line {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  /* drawn by GSAP */
}

/* Region tags */
.bp-insight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.bp-insight-tags span {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--p-accent);
  background: var(--p-accent-soft);
  padding: 3px 9px;
  border-radius: 50px;
  opacity: 0;
  transform: translateY(6px);
  /* stagger animated by GSAP */
}

/* Shine sweep on card enter */
.bp-insight-card::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 50%;
  height: 220%;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  transform: translateX(-100%);
  pointer-events: none;
}

.bp-insight-card.bp-shine::after {
  animation: bpInsightShine 0.9s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes bpInsightShine {
  to {
    transform: translateX(460%);
  }
}

@media (max-width: 1024px) {
  .bp-insight-card {
    right: 20px;
  }
}

@media (max-width: 900px) {
  .bp-insight-card {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bp-insight-card {
    display: none;
  }
}