/* ===================================================
   BRIDGE GRC — CATALYST (product page) — rebuilt
   Loaded after styles.css. Designed-asset treatment:
   un-framed, feathered, blended; every image woven into
   the scroll. Image sections sit on a near-black band
   (#020308) to match the pure-black images; text sections
   use bg-surface for rhythm.
   =================================================== */

/* ===================================================
   1 — HERO (wordmark + centered copy + full-screen)
   =================================================== */
.cat-hero {
  position: relative;
  padding: 0 var(--space-md) var(--space-xl);
  text-align: center;
  overflow: hidden;
}

.cat-hero__glow {
  position: absolute;
  top: 46vh;
  left: 50%;
  width: min(1100px, 90vw);
  height: 720px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(45, 200, 130, 0.12), transparent 60%);
  pointer-events: none;
}

.cat-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 96px 0 var(--space-lg);
  box-sizing: border-box;
}

/* Wordmark lockup */
.cat-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-md);
}
.cat-wordmark__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #050508;
  background: var(--accent-primary);
  box-shadow: 0 0 24px rgba(45, 200, 130, 0.4);
}
.cat-wordmark__mark svg { width: 19px; height: 19px; }
.cat-wordmark__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.cat-wordmark__by {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  padding-left: 10px;
  border-left: 1px solid var(--border-subtle);
}

.cat-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}
.cat-accent { color: var(--accent-primary); }

.cat-hero__subtitle {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto var(--space-lg);
}

.cat-hero__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.cat-hero__note {
  margin-top: var(--space-md);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
}

/* un-framed showcase below the fold (the internal/client split) */
.cat-hero__shot {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.cat-hero__shot img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 36px 90px rgba(0, 0, 0, 0.5));
}

/* ===================================================
   2 — THE GAP (problem, 4 cards)
   =================================================== */
.cat-gap {
  padding: var(--section-gap) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.cat-gap__head { text-align: center; max-width: 720px; margin: 0 auto var(--space-2xl); }
.cat-gap__lead {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
}
.cat-gap__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.cat-gap__card {
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  background: var(--bg-void);
  border-top: 2px solid var(--risk-amber);
}
.cat-gap__card h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.cat-gap__card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ===================================================
   WIDE BAND (centerpiece / views / white-label)
   =================================================== */
.cat-band {
  position: relative;
  padding: var(--section-gap) 0;
  background: #020308;          /* matches the pure-black images → seamless */
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
}
.cat-band__glow {
  position: absolute;
  top: 16%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 520px;
  background: radial-gradient(ellipse at center, rgba(45, 200, 130, 0.08), transparent 65%);
  pointer-events: none;
}
.cat-band--purple .cat-band__glow {
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.16), transparent 65%);
}

.cat-band__head {
  position: relative;
  text-align: center;
  max-width: 780px;
  margin: 0 auto var(--space-xl);
}
.cat-band__lead {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--text-secondary);
  line-height: 1.75;
}
.cat-band__lead strong { color: var(--accent-primary); }
.cat-band--purple .cat-band__lead strong { color: #a78bfa; }

.cat-band__shot {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
.cat-band__shot img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.5));
}

/* centerpiece cards (two experiences) */
.cat-band__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 980px;
  margin: var(--space-xl) auto 0;
}
.cat-tc {
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  background: var(--bg-void);
}
.cat-tc h4 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.cat-tc p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.cat-band__cta { position: relative; text-align: center; margin-top: var(--space-xl); }

/* six-view legend strip (under the views image) */
.cat-views {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: var(--space-xl);
}
.cat-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  padding: 10px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  background: var(--bg-void);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.cat-view:hover { border-color: var(--accent-primary); color: var(--text-primary); }
.cat-view svg { width: 15px; height: 15px; color: var(--accent-primary); }

/* ===================================================
   SPOTLIGHTS (split — tasks / templates / entitlements / dashboards)
   =================================================== */
.cat-spot {
  padding: var(--section-gap) 0;
  background: #020308;
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
}
.cat-spot__split {
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  gap: var(--space-xl);
  align-items: center;
}
.cat-spot__split--rev { grid-template-columns: 1.07fr 0.93fr; }
.cat-spot__split--rev .cat-spot__text { order: 2; }

/* enlarge the visual into the empty copy-side space */
.cat-spot__split:not(.cat-spot__split--rev) .cat-spot__visual { margin-right: -8%; }
.cat-spot__split--rev .cat-spot__visual { margin-left: -8%; }

.cat-spot__text .section-title { margin: var(--space-sm) 0 var(--space-md); }
.cat-spot__text > p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: var(--space-lg);
}

.cat-spot__visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.5));
}

.cat-spot__list {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cat-spot__list li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.cat-spot__list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 4px;
  width: 13px;
  height: 7px;
  border-left: 2px solid var(--accent-primary);
  border-bottom: 2px solid var(--accent-primary);
  transform: rotate(-45deg);
}

/* ---- reusable coloured tags (directionality / usage / roles) ---- */
.cat-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.cat-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 8px 15px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
}
.cat-tag--green  { color: var(--accent-primary); background: rgba(45, 200, 130, 0.10); border-color: rgba(45, 200, 130, 0.32); }
.cat-tag--teal   { color: #2DD4BF; background: rgba(45, 212, 191, 0.10); border-color: rgba(45, 212, 191, 0.32); }
.cat-tag--blue   { color: #60A5FA; background: rgba(96, 165, 250, 0.10); border-color: rgba(96, 165, 250, 0.32); }
.cat-tag--purple { color: #a78bfa; background: rgba(139, 92, 246, 0.12); border-color: rgba(139, 92, 246, 0.36); }
.cat-tag--amber  { color: #FFB020; background: rgba(255, 176, 32, 0.10); border-color: rgba(255, 176, 32, 0.32); }
.cat-tag--ghost  { color: var(--text-secondary); background: rgba(255, 255, 255, 0.03); border-color: var(--border-subtle); }
.cat-tag-arrow { color: var(--accent-primary); font-size: 15px; }

/* ===================================================
   FEATURE GRID (the rest)
   =================================================== */
.cat-feats {
  padding: var(--section-gap) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.cat-feats__head { text-align: center; margin-bottom: var(--space-2xl); }
.cat-feats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 1080px;
  margin: 0 auto;
}
.cat-feat {
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  background: var(--bg-void);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.cat-feat:hover { border-color: var(--border-glow); transform: translateY(-3px); }
.cat-feat h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.cat-feat p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ===================================================
   AUDIENCE (centered chips + green hover glow)
   =================================================== */
.cat-audience { padding: var(--section-gap) 0; text-align: center; }
.cat-audience__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: var(--space-md) 0 var(--space-xl);
}
.cat-audience__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.cat-chip {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 12px 22px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  background: var(--bg-surface);
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.cat-audience__chips:hover .cat-chip { border-color: rgba(45, 200, 130, 0.28); }
.cat-chip:hover {
  border-color: var(--accent-primary);
  color: var(--text-primary);
  background: rgba(45, 200, 130, 0.08);
  box-shadow: 0 0 22px rgba(45, 200, 130, 0.35);
}

/* ===================================================
   CTA
   =================================================== */
.cat-cta { padding: var(--space-3xl) var(--space-md); }
.cat-cta__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-bento);
  background:
    radial-gradient(120% 160% at 50% 0%, rgba(45, 200, 130, 0.10), transparent 60%),
    var(--bg-surface);
}
.cat-cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: var(--space-sm) 0 var(--space-md);
}
.cat-cta__sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}
.cat-cta__fallback { margin-top: var(--space-lg); font-size: 14px; color: var(--text-tertiary); }
.cat-cta__fallback a { color: var(--accent-primary); }

/* ===================================================
   Soft four-edge feather — blend every image into its section
   =================================================== */
.cat-hero__shot img,
.cat-band__shot img,
.cat-spot__visual img {
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%, #000 9%, #000 91%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-image:
    linear-gradient(to right,  transparent 0%, #000 9%, #000 91%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
          mask-composite: intersect;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .cat-gap__grid { grid-template-columns: 1fr 1fr; }
  .cat-feats__grid { grid-template-columns: 1fr 1fr; }
}

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

  .cat-spot__split,
  .cat-spot__split--rev { grid-template-columns: 1fr; gap: var(--space-lg); }
  .cat-spot__split--rev .cat-spot__text { order: 0; }
  .cat-spot__visual { order: -1; }
  .cat-spot__split .cat-spot__visual,
  .cat-spot__split--rev .cat-spot__visual { margin-left: 0; margin-right: 0; }
}

@media (max-width: 560px) {
  .cat-gap__grid { grid-template-columns: 1fr; }
  .cat-feats__grid { grid-template-columns: 1fr; }
  .cat-wordmark { flex-wrap: wrap; justify-content: center; }
}
