/* AgentBrain Core Home — "alive" layer: accent colors, motion, live proof cards, image slots */

/* —— Aurora hero background (slow drift, reduced-motion safe) —— */
html, body { overflow-x: clip; }
header { position: relative; }
.aurora {
  position: absolute;
  inset: -80px 0 auto;
  height: 520px;
  pointer-events: none;
  z-index: -1;
  overflow: visible;
}
.aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
}
.aurora .a1 { width: 420px; height: 420px; right: 4%; top: -40px;  background: rgba(79,100,255,0.16); }
.aurora .a2 { width: 340px; height: 340px; right: 26%; top: 120px; background: rgba(91,199,216,0.16); }
.aurora .a3 { width: 300px; height: 300px; left: -40px; top: 60px; background: rgba(124,58,237,0.08); }
@media (prefers-reduced-motion: no-preference) {
  .aurora .a1 { animation: auroraDrift 14s ease-in-out infinite alternate; }
  .aurora .a2 { animation: auroraDrift 18s ease-in-out infinite alternate-reverse; }
  .aurora .a3 { animation: auroraDrift 22s ease-in-out infinite alternate; }
}
@keyframes auroraDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-48px, 28px) scale(1.12); }
}

/* —— Creed card: staggered line entrance + breathing arrow —— */
@media (prefers-reduced-motion: no-preference) {
  html.js .creed-card .creed-line {
    animation: creedIn 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) backwards;
  }
  html.js .creed-card .creed-line:nth-child(2) { animation-delay: 0.55s; }
  html.js .creed-card .creed-line:nth-child(3) { animation-delay: 0.75s; }
  html.js .creed-card .creed-line:nth-child(4) { animation-delay: 0.95s; }
  html.js .creed-card .creed-line:nth-child(5) { animation-delay: 1.15s; }
  html.js .creed-card .creed-line.stays { animation-delay: 1.45s; }
  .creed-card .creed-line.stays .n { display: inline-block; animation: nudgeRight 2.6s ease-in-out infinite 2.2s; }
}
@keyframes creedIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
@keyframes nudgeRight {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(3px); }
}

/* —— Colored section numbers + accent-cycled pillar tags —— */
.section-num { color: var(--blue); }
.pillars .pillar:nth-child(5n+1) .p-tag { color: var(--blue); }
.pillars .pillar:nth-child(5n+2) .p-tag { color: var(--green); }
.pillars .pillar:nth-child(5n+3) .p-tag { color: var(--purple); }
.pillars .pillar:nth-child(5n+4) .p-tag { color: #a0671b; }
.pillars .pillar:nth-child(5n+5) .p-tag { color: #2e9aab; }

/* gradient hairline sweeps in on pillar hover */
.pillar { position: relative; overflow: hidden; }
.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pillar:hover::before { transform: scaleX(1); }

/* fail cards: red hairline sweep */
.fail { position: relative; overflow: hidden; }
.fail::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(229,72,77,0.55);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.fail:hover::before { transform: scaleX(1); }
.fails.nots .fail::before { background: var(--hair-strong); }

/* —— Animated layer-gap dashes —— */
.layer-gap {
  background-image: linear-gradient(to bottom, rgba(79,100,255,0.5) 45%, transparent 45%);
  background-size: 1.5px 9px;
  background-repeat: repeat-y;
  background-position: center top;
  padding: 14px 0;
}
.layer-gap span {
  background: var(--bg);
  padding: 0 12px;
  position: relative;
}
@media (prefers-reduced-motion: no-preference) {
  .layer-gap { animation: gapFlow 1.2s linear infinite; }
}
@keyframes gapFlow { to { background-position: center 9px; } }

/* —— Live proof preview cards —— */
.proof-live {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 36px;
}
.live-card {
  background: var(--panel);
  border: 1px solid var(--hair);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(10,10,12,0.04), 0 12px 30px rgba(10,10,12,0.06);
  overflow: hidden;
  font-family: var(--mono);
}
.live-card .lc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--hair);
  font-size: 11.5px;
  letter-spacing: 0.3px;
  color: var(--soft);
}
.live-card .lc-head .lc-title { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.live-card .lc-head .lc-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  transition: background 0.4s ease;
}
.live-card .lc-status {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid;
  transition: color 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}
.live-card .lc-status.ok      { color: var(--green); background: rgba(29,159,111,0.08); border-color: rgba(29,159,111,0.25); }
.live-card .lc-status.warn    { color: #a0671b;      background: rgba(201,129,24,0.08); border-color: rgba(201,129,24,0.28); }
.live-card .lc-status.stop    { color: var(--red);   background: rgba(229,72,77,0.08);  border-color: rgba(229,72,77,0.28); }
.live-card .lc-body { padding: 6px 0; }
.live-card .lc-row {
  display: grid;
  grid-template-columns: 122px 1fr;
  gap: 14px;
  padding: 8px 18px;
  font-size: 12.5px;
  letter-spacing: 0.1px;
}
.live-card .lc-row .k { color: var(--soft); }
.live-card .lc-row .v { color: var(--ink); transition: color 0.3s ease; }
.live-card .lc-row .v.good { color: var(--green); }
.live-card .lc-row .v.warn { color: #a0671b; }
.live-card .lc-row .v.bad  { color: var(--red); }
.live-card .lc-foot {
  display: flex;
  justify-content: space-between;
  padding: 10px 18px;
  border-top: 1px solid var(--hair);
  font-size: 11px;
  color: var(--soft);
  letter-spacing: 0.3px;
}
@keyframes lcFlash {
  0%   { background: rgba(79,100,255,0.06); }
  100% { background: transparent; }
}
.live-card .lc-row.flash { animation: lcFlash 0.9s ease-out; }
.proof-live-caption {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--soft);
  letter-spacing: 0.3px;
  text-align: center;
  margin: -22px 0 36px;
}

/* —— Product shot frame (image slot in browser chrome) —— */
.shot-frame {
  margin-top: 36px;
  background: var(--panel);
  border: 1px solid var(--hair);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(10,10,12,0.04), 0 24px 50px -20px rgba(10,10,12,0.18);
  overflow: hidden;
}
.shot-frame .sf-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--hair);
  background: var(--bg-soft);
}
.shot-frame .sf-bar .dots { display: flex; gap: 5px; }
.shot-frame .sf-bar .dots span {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--bg-tint);
  border: 1px solid var(--hair-strong);
}
.shot-frame .sf-bar .url {
  flex: 1;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--soft);
  letter-spacing: 0.2px;
  background: var(--bg);
  border: 1px solid var(--hair);
  border-radius: 6px;
  padding: 4px 12px;
  max-width: 360px;
}
.shot-frame image-slot { display: block; width: 100%; height: 420px; }
.shot-caption {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--soft);
  letter-spacing: 0.3px;
  text-align: center;
}

/* —— Photo band (real imagery) —— */
.photo-band {
  position: relative;
  margin-top: 36px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(10,10,12,0.06), 0 28px 60px -22px rgba(10,10,12,0.28);
}
.photo-band image-slot { display: block; width: 100%; height: 440px; }
.photo-band .pb-caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.92);
  background: rgba(10,10,12,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 7px 14px;
  border-radius: 100px;
  pointer-events: none;
}
@media (min-width: 1080px) {
  .photo-band image-slot { height: 540px; }
}
@media (max-width: 640px) {
  .photo-band image-slot { height: 260px; }
  .photo-band .pb-caption { left: 12px; bottom: 10px; font-size: 10.5px; }
}

/* —— Reviewer card (access section) —— */
.reviewer {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  padding: 22px 24px;
  background: var(--panel);
  border: 1px solid var(--hair);
  border-radius: 14px;
}
.reviewer image-slot { width: 76px; height: 76px; }
.reviewer .rv-name {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 3px;
}
.reviewer .rv-note {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
  text-wrap: pretty;
}

/* —— Final band glow —— */
.final-band { position: relative; overflow: hidden; }
.final-band::before {
  content: "";
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,100,255,0.35), transparent 65%);
  top: -280px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .final-band::before { animation: glowPulse 6s ease-in-out infinite; }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}
.final-band > * { position: relative; }

/* —— Chip hover —— */
.chip { transition: border-color var(--t-fast) ease, color var(--t-fast) ease, transform var(--t-fast) ease; }
.chip:hover { border-color: rgba(79,100,255,0.4); color: var(--ink); transform: translateY(-1px); }
.final-band .chip:hover { border-color: rgba(255,255,255,0.4); color: #fff; }

/* —— Hero network canvas (ported from brain-canvas.jsx, brand-tinted) —— */
.hero-net {
  position: absolute;
  inset: -50px 0 auto;
  height: 580px;
  z-index: -1;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 75% 80% at 72% 38%, black 0%, rgba(0,0,0,0.75) 45%, transparent 78%);
  mask-image: radial-gradient(ellipse 75% 80% at 72% 38%, black 0%, rgba(0,0,0,0.75) 45%, transparent 78%);
}
.hero-net canvas { width: 100%; height: 100%; display: block; }
@media (max-width: 880px) {
  .hero-net {
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 0%, rgba(0,0,0,0.6) 50%, transparent 80%);
    mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 0%, rgba(0,0,0,0.6) 50%, transparent 80%);
    opacity: 0.7;
  }
}

/* —— Surface constellation (hero right) —— */
.constellation {
  position: relative;
  width: 100%;
  height: 480px;
}
.constellation canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.c-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  z-index: 2;
}
.c-node .c-disc {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--hair-strong);
  box-shadow: 0 1px 2px rgba(10,10,12,0.05), 0 10px 24px -10px rgba(10,10,12,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-move) cubic-bezier(0.2, 0.7, 0.2, 1), border-color var(--t-fast) ease, box-shadow var(--t-move) ease;
}
.c-node:hover .c-disc {
  transform: scale(1.12);
  border-color: rgba(79,100,255,0.45);
  box-shadow: 0 2px 4px rgba(10,10,12,0.06), 0 14px 30px -10px rgba(79,100,255,0.35);
}
.c-node .c-disc img { width: 22px; height: 22px; display: block; }
.c-node .c-disc .c-fallback {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.3px;
}
.c-node .c-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.3px;
  color: var(--muted);
  background: rgba(255,255,255,0.85);
  padding: 2px 8px;
  border-radius: 100px;
  white-space: nowrap;
}
.c-node.hub {
  z-index: 3;
  gap: 10px;
  left: 50%;
  top: 47%;
}
.c-node.hub .ab-mark {
  width: 78px;
  height: 78px;
  background: #ffffff;
  border-radius: 50%;
  border: 1px solid var(--hair-strong);
  box-shadow: 0 2px 6px rgba(10,10,12,0.06), 0 18px 44px -12px rgba(79,100,255,0.3);
  padding: 12px;
}
.c-node.hub .c-label {
  font-weight: 500;
  color: var(--ink);
  font-size: 11.5px;
}
.c-caption {
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.4px;
  color: var(--soft);
  white-space: nowrap;
}
@media (prefers-reduced-motion: no-preference) {
  .c-node.sat { animation: cFloat 5.5s ease-in-out infinite alternate; animation-delay: var(--fd, 0s); }
  @keyframes cFloat {
    from { transform: translate(-50%, -50%) translateY(-3px); }
    to   { transform: translate(-50%, -50%) translateY(3px); }
  }
}
@media (max-width: 880px) {
  .constellation { height: 400px; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .constellation { height: 340px; }
  .c-node .c-disc { width: 38px; height: 38px; }
  .c-node .c-disc img { width: 18px; height: 18px; }
  .c-node.hub .ab-mark { width: 62px; height: 62px; padding: 9px; }
}

/* —— Section 02: knowing list + validity visual —— */
.mem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 28px;
}
.mem-grid .knowing { margin-bottom: 0; }
.mem-card .mv-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 11px 18px;
  border-bottom: 1px solid var(--hair);
  font-size: 12.5px;
  letter-spacing: 0.1px;
  color: var(--ink);
}
.mem-card .mv-row:last-child { border-bottom: none; }
.mem-card .mv-row .label { margin-top: 0; font-size: 10.5px; }
@media (max-width: 880px) {
  .mem-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* —— Atmosphere: richer canvas wash, tinted full-bleed bands, accent ticks —— */
body {
  background:
    radial-gradient(1100px 650px at 80% 4%, rgba(79,100,255,0.13), transparent 55%),
    radial-gradient(900px 600px at 6% 30%, rgba(91,199,216,0.09), transparent 60%),
    radial-gradient(1000px 700px at 94% 62%, rgba(124,58,237,0.06), transparent 60%),
    radial-gradient(900px 600px at 10% 88%, rgba(79,100,255,0.07), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

/* full-bleed tinted bands behind selected sections */
.band { position: relative; }
.band::before {
  content: "";
  position: absolute;
  inset: -52px calc(50% - 50vw);
  background: linear-gradient(180deg, rgba(79,100,255,0.055) 0%, rgba(91,199,216,0.045) 100%);
  border-top: 1px solid rgba(79,100,255,0.10);
  border-bottom: 1px solid rgba(79,100,255,0.10);
  z-index: -1;
  pointer-events: none;
}

/* gradient tick under every section head */
.section-head { position: relative; }
.section-head::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 64px;
  height: 2px;
  background: var(--accent-grad);
}

/* colored counters in the knowing ledger */
.knowing .k-num { color: var(--blue); }

/* —— Pillar icons (section 04) —— */
.pillar .p-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid var(--hair);
}
.pillar .p-icon svg { width: 22px; height: 22px; display: block; }
.pillars .pillar:nth-child(5n+1) .p-icon { color: var(--blue);  background: rgba(79,100,255,0.08); }
.pillars .pillar:nth-child(5n+2) .p-icon { color: var(--green); background: rgba(29,159,111,0.08); }
.pillars .pillar:nth-child(5n+3) .p-icon { color: var(--purple); background: rgba(124,58,237,0.08); }
.pillars .pillar:nth-child(5n+4) .p-icon { color: #a0671b;      background: rgba(201,129,24,0.10); }
.pillars .pillar:nth-child(5n+5) .p-icon { color: #2e9aab;      background: rgba(46,154,171,0.10); }

/* —— Final conversion pass: stronger hero, proof row, micro-reassurance —— */
.hero-grid h1 { font-weight: 600; }
.btn-row .btn-primary { min-height: 50px; padding: 14px 30px; font-size: 16px; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--soft);
  letter-spacing: 0.2px;
}
.hero-proof .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
}
.hero-proof .sep { opacity: 0.5; }
.fb-micro {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.55);
}

/* —— Topbar/eyebrow wrap guards —— */
.topbar .nav a { white-space: nowrap; }
.topbar .nav { flex-wrap: nowrap; }
.eyebrow { max-width: 100%; }
.eyebrow span:last-child { white-space: normal; }

/* —— Desktop: wider canvas + denser grids —— */
.page { max-width: 1180px; }

@media (min-width: 1080px) {
  .hero-grid { gap: 64px; }
  .hero-grid h1 { font-size: clamp(34px, 4.2vw, 58px); }
  .lede { max-width: 700px; }

  /* failure modes: 3-up */
  .fails { grid-template-columns: repeat(3, 1fr); }

  /* pillar grids: 3 per row (6-track grid so orphans can span cleanly) */
  .pillars:not(.cols-3) { grid-template-columns: repeat(6, 1fr); }
  .pillars:not(.cols-3) .pillar { grid-column: span 2; }
  /* 7th of 7 (core capabilities): full-width emphasis row */
  .pillars:not(.cols-3) .pillar:last-child:nth-child(3n+1) { grid-column: span 6; }
  /* 4th + 5th of 5 (proof surfaces): split the last row */
  .pillars:not(.cols-3) .pillar:nth-child(3n+1):nth-last-child(2) { grid-column: span 3; }
  .pillars:not(.cols-3) .pillar:nth-child(3n+2):last-child { grid-column: span 3; }

  /* product shot: taller on wide screens */
  .shot-frame image-slot { height: 560px; }
  .shot-frame .sf-bar .url { max-width: 420px; }

  /* live proof cards: more breathing room */
  .proof-live { gap: 24px; }
  .live-card .lc-row { grid-template-columns: 136px 1fr; }

  /* architecture rows: roomier */
  .layer { padding: 26px 30px; grid-template-columns: 110px 1fr; }

  /* knowing/test lists can sit a bit wider */
  .testlist { max-width: 860px; }
}

@media (min-width: 1280px) {
  .pivot { padding: 64px 80px; }
  .final-band { padding: 88px 96px; }
}

/* —— Responsive —— */
@media (max-width: 760px) {
  .proof-live { grid-template-columns: 1fr; }
  .shot-frame image-slot { height: 260px; }
  .live-card .lc-row { grid-template-columns: 104px 1fr; }
}
@media (max-width: 640px) {
  .reviewer { grid-template-columns: 56px 1fr; padding: 18px; gap: 14px; }
  .reviewer image-slot { width: 56px; height: 56px; }
  .aurora span { filter: blur(50px); }
}

/* —— Device polish: tablet —— */
@media (max-width: 880px) {
  header { margin-bottom: 72px; }
  section { margin-bottom: 72px; }
  .pivot { margin-bottom: 72px; }
  .hero-grid { gap: 40px; }
}

/* —— Device polish: phone —— */
@media (max-width: 640px) {
  h1 { font-size: clamp(28px, 8.2vw, 34px); }
  .lede { font-size: 16.5px; }
  .btn-row { gap: 10px; }
  .btn-row .btn-primary, .btn-row .btn-ghost { width: 100%; justify-content: center; }
  .section-head { gap: 14px; margin-bottom: 24px; padding-bottom: 16px; }
  h2 { font-size: 21px; line-height: 1.25; }
  .pitch-lead { font-size: 19px; margin-bottom: 28px; }
  .section-intro { font-size: 15px; margin-bottom: 22px; }
  .fail { padding: 14px 16px; font-size: 14.5px; }
  .knowing li { padding: 10px 14px; font-size: 14.5px; }
  .testlist li { padding: 13px 16px; font-size: 14.5px; grid-template-columns: 24px 1fr; gap: 10px; }
  .pillar { padding: 20px 18px 22px; }
  .pillar h3 { font-size: 17px; }
  .pillar p { font-size: 14.5px; }
  .t-cell { padding: 18px; }
  .pivot .p-line { font-size: 21px; }
  .pivot .p-sub { font-size: 14px; }
  .live-card .lc-row { grid-template-columns: 92px 1fr; font-size: 12px; padding: 7px 14px; }
  .live-card .lc-head { padding: 10px 14px; }
  .live-card .lc-foot { padding: 9px 14px; }
  .proof-live-caption { margin: -14px 0 28px; }
  .layer-gap { padding: 10px 0; }
  .chip { font-size: 11px; padding: 4px 8px; }
  .final-band h2 { font-size: 26px; }
  .final-band .f-sub { font-size: 14.5px; }
  .final-band .btn-row .btn-primary, .final-band .btn-row .btn-ghost { width: 100%; }
  .cta-strip { flex-direction: column; align-items: stretch; }
  .cta-strip .btn-primary { justify-content: center; }
  .apply-smallprint { font-size: 12.5px; }
}

/* —— Device polish: small phone —— */
@media (max-width: 480px) {
  .sticky-cta { padding: 8px 10px; }
  .sticky-cta .count { display: none; }
  .constellation { height: 320px; }
  .c-node .c-label { font-size: 9.5px; padding: 2px 6px; }
  .c-caption { font-size: 10px; }
  .eyebrow { font-size: 11px; padding: 5px 10px; }
  .photo-band .pb-caption { max-width: calc(100% - 24px); white-space: normal; text-align: left; border-radius: 12px; }
}
