/* Citizz.app public web — citizz-web-pages.css (owned in citizz-public-web/css; edit freely). Re-sync from portal: node scripts/sync-citizz-public-from-portal.mjs */
/* —— Public marketing / Learn / Help (data-site="public") —— */
body[data-site='public']::before {
  opacity: 0.42;
}

/* Warm trust layer: citizens + locals + businesses (gold–violet) */
body[data-site='public'] {
  background-image:
    radial-gradient(ellipse 100% 80% at 0% 0%, rgba(79, 61, 240, 0.11), transparent 52%),
    radial-gradient(ellipse 70% 55% at 100% 0%, rgba(245, 158, 11, 0.06), transparent 50%),
    radial-gradient(ellipse 80% 60% at 100% 100%, rgba(14, 165, 233, 0.075), transparent 48%),
    radial-gradient(ellipse 55% 40% at 18% 100%, rgba(245, 158, 11, 0.05), transparent 45%),
    linear-gradient(180deg, var(--bg0) 0%, #ece8f4 55%, #e6e9f6 100%);
}
.pub-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
}
.pub-skip:focus {
  left: 12px;
  top: 12px;
}
.pub-top {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  animation:
    fadeDown var(--dur-med) var(--ease-out) both,
    navGlow 7s var(--ease-out) 0.5s infinite;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}
@media (max-width: 768px) {
  .pub-top:has(> .pub-actions) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 8px 10px;
    padding: 10px 14px;
  }
  .pub-top:has(> .pub-actions) > .pub-brand {
    grid-column: 1;
    grid-row: 1;
  }
  .pub-top:has(> .pub-actions) > .pub-actions {
    grid-column: 2;
    grid-row: 1;
    flex-wrap: nowrap;
  }
  .pub-top:has(> .pub-actions) > .pub-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 6px;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .pub-top:has(> .pub-actions) > .pub-nav::-webkit-scrollbar {
    display: none;
  }
  .pub-nav a {
    padding: 7px 11px;
    font-size: 0.78rem;
    flex-shrink: 0;
  }
  .pub-brand {
    font-size: 1.02rem;
  }
  .btn-pub {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
}
.pub-brand {
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}

/* Wordmark: Citi (trust purple) + ZZ (celebratory gold — “Smart Citizens”) */
.pub-brand__citi {
  color: var(--accent);
  letter-spacing: -0.035em;
}
.pub-brand__zz {
  margin-left: 1px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.05em;
  background: linear-gradient(
    125deg,
    var(--citizz-zz-deep) 0%,
    var(--citizz-zz-mid) 38%,
    var(--citizz-zz-bright) 72%,
    #fcd34d 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 2px var(--citizz-zz-glow));
}
.pub-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}
.pub-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2d2a3d;
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(79, 61, 240, 0.14);
  background: rgba(255, 255, 255, 0.65);
  transition:
    background var(--dur-fast) ease,
    color var(--dur-fast) ease,
    border-color var(--dur-fast) ease,
    box-shadow var(--dur-fast) ease;
}
.pub-nav a:hover {
  background: rgba(79, 61, 240, 0.1);
  color: var(--accent);
  border-color: rgba(79, 61, 240, 0.22);
}
.pub-nav a.pub-nav--active {
  background: linear-gradient(135deg, rgba(79, 61, 240, 0.16), rgba(99, 102, 241, 0.12));
  color: #3b2fb8;
  border-color: rgba(79, 61, 240, 0.35);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.pub-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.btn-pub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) ease,
    filter var(--dur-fast) ease;
}
.btn-pub--ghost {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-pub--ghost:hover {
  background: var(--surface);
  transform: translateY(-1px);
}
.btn-pub--primary {
  background: linear-gradient(135deg, #4f3df0, #6366f1);
  color: #fff;
  box-shadow: 0 4px 16px rgba(79, 61, 240, 0.35);
}
.btn-pub--primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(79, 61, 240, 0.42);
}
button.btn-pub {
  font: inherit;
  font-family: inherit;
  cursor: pointer;
}
.pub-main {
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px 22px 56px;
}
.app-learn-gate-msg {
  animation: gatePulse 1.35s ease-in-out infinite;
}
.app-learn-gate-msg.err {
  color: #b91c1c;
  font-weight: 600;
  animation: none;
}
@keyframes pubBlobFloatA {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(8%, -6%) scale(1.06);
  }
}
@keyframes pubBlobFloatB {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-10%, 8%) scale(1.04);
  }
}
@keyframes pubBlobFloatC {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-6%, -10%) scale(1.08);
  }
}
@keyframes pubRingPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.55;
  }
}
@keyframes pubExploreNudge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}
@keyframes pubFoldIn {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pubTitleEnter {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(20px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}
@keyframes pubKickerDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.75;
  }
}

.pub-main--splash {
  padding-top: 12px;
}
.pub-main--expanded .pub-hero--splash {
  min-height: 200px;
  padding: 20px 16px 28px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 8px 28px rgba(79, 61, 240, 0.05);
}
.pub-main--expanded .pub-hero-blob,
.pub-main--expanded .pub-hero-ring {
  opacity: 0.28;
  transition: opacity 0.55s ease;
}
.pub-hero--splash {
  position: relative;
  isolation: isolate;
  min-height: min(82vh, 720px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px 40px;
  text-align: center;
  overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(79, 61, 240, 0.12);
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(99, 102, 241, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 80%, rgba(244, 114, 182, 0.08), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(244, 245, 251, 0.45) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 20px 60px rgba(79, 61, 240, 0.08);
  transition:
    min-height 0.65s var(--ease-out),
    padding 0.55s var(--ease-out),
    box-shadow 0.55s ease;
}
.pub-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.pub-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
}
.pub-hero-blob--a {
  width: min(72vw, 340px);
  height: min(72vw, 340px);
  top: -18%;
  left: -12%;
  background: radial-gradient(circle, rgba(79, 61, 240, 0.45) 0%, transparent 70%);
  animation: pubBlobFloatA 14s var(--ease-out) infinite;
}
.pub-hero-blob--b {
  width: min(60vw, 280px);
  height: min(60vw, 280px);
  bottom: -20%;
  right: -8%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.35) 0%, transparent 68%);
  animation: pubBlobFloatB 17s var(--ease-out) infinite;
}
.pub-hero-blob--c {
  width: min(50vw, 220px);
  height: min(50vw, 220px);
  top: 38%;
  right: 8%;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.28) 0%,
    rgba(167, 139, 250, 0.32) 45%,
    transparent 68%
  );
  animation: pubBlobFloatC 12s var(--ease-out) infinite;
}
.pub-hero-ring {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(88vw, 420px);
  height: min(88vw, 420px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(79, 61, 240, 0.15);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  animation: pubRingPulse 5s var(--ease-out) infinite;
}
.pub-hero--splash > :not(.pub-hero-deco) {
  position: relative;
  z-index: 1;
}
.pub-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  animation: fadeDown var(--dur-med) var(--ease-out) 0.12s both;
}
.pub-hero-kicker__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f3df0 0%, var(--citizz-zz-bright) 100%);
  box-shadow:
    0 0 0 3px rgba(79, 61, 240, 0.12),
    0 0 12px var(--citizz-zz-glow);
  animation: pubKickerDot 2.2s var(--ease-out) infinite;
}
.pub-hero--splash h1 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 8vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: inherit;
}

/* Hero wordmark split: “Citi” animated indigo ribbon, “ZZ” gold celebration */
.pub-hero--splash h1 .pub-brand__citi {
  background: linear-gradient(120deg, #312e81 0%, #4f3df0 42%, #6366f1 68%, #5b52d6 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroGlow 12s var(--ease-out) infinite;
  font-weight: 800;
  font-style: normal;
}
.pub-hero--splash h1 .pub-brand__zz {
  margin-left: 2px;
  font-size: 1em;
}

.pub-hero-title__inner {
  display: inline-block;
  animation: pubTitleEnter 0.95s var(--ease-out) 0.05s both;
}
.pub-hero-tagline {
  margin: 0 auto;
  max-width: 26rem;
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 500;
  animation: riseIn var(--dur-slow) var(--ease-out) 0.2s both;
}

/* Splash-aligned “how it works” (Karmik handshake + outline icons) */
.pub-how-steps {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 52rem;
  margin: 22px auto 0;
  padding: 0 12px;
  animation: riseIn var(--dur-slow) var(--ease-out) 0.26s both;
}
.pub-how-steps__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.pub-how-steps__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, #4f3df0 0%, rgba(99, 102, 241, 0.92) 100%);
  box-shadow:
    0 4px 14px rgba(79, 61, 240, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.25) inset;
  flex-shrink: 0;
}
.pub-how-steps__mark svg {
  width: 26px;
  height: 26px;
  display: block;
}
.pub-how-steps__title {
  margin: 0;
  font-size: clamp(0.95rem, 2.4vw, 1.05rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.pub-how-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  text-align: left;
}
@media (min-width: 720px) {
  .pub-how-steps__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    text-align: center;
  }
}
.pub-how-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 14px 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(79, 61, 240, 0.12);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 6px 22px rgba(79, 61, 240, 0.06);
}
@media (min-width: 720px) {
  .pub-how-step {
    align-items: center;
    padding: 16px 12px 18px;
  }
}
.pub-how-step__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    rgba(79, 61, 240, 0.12) 0%,
    rgba(99, 102, 241, 0.08) 45%,
    rgba(245, 158, 11, 0.1) 100%
  );
  border: 1px solid rgba(79, 61, 240, 0.1);
  color: #4f3df0;
}
.pub-how-step:nth-child(2) .pub-how-step__icon {
  background: linear-gradient(
    145deg,
    rgba(245, 158, 11, 0.12) 0%,
    rgba(251, 191, 36, 0.08) 50%,
    rgba(79, 61, 240, 0.08) 100%
  );
  color: #b45309;
}
.pub-how-step:nth-child(3) .pub-how-step__icon {
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.1) 0%, rgba(79, 61, 240, 0.09) 100%);
  color: #0369a1;
}
.pub-how-step__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.pub-how-step__title {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.25;
}
.pub-how-step__text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 500;
}
@media (min-width: 720px) {
  .pub-how-step__text {
    max-width: 15rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.pub-hero-cta--splash {
  margin-top: 28px;
  animation: riseIn var(--dur-slow) var(--ease-out) 0.32s both;
}
.pub-how-steps + .pub-hero-cta--splash {
  margin-top: 20px;
}
.pub-hero-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(79, 61, 240, 0.38);
}
.pub-hero-explore__icon {
  display: inline-flex;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  animation: pubExploreNudge 1.6s var(--ease-out) infinite;
}
.pub-below-fold[hidden] {
  display: none !important;
}
.pub-below-fold:not([hidden]) {
  display: block;
  scroll-margin-top: 88px;
  opacity: 0;
  transform: translateY(36px);
}
.pub-below-fold--visible {
  animation: pubFoldIn 0.75s var(--ease-out) forwards;
}
.pub-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.app-footer--business-only {
  margin: 0;
  font-weight: 600;
}
.app-footer-note {
  margin: 10px auto 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
  max-width: 42ch;
  text-align: center;
}
.pub-footer--account {
  text-align: left;
}
.pub-footer-signout-note {
  margin: 12px 0 8px;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--muted);
  max-width: 40rem;
}
.pub-footer-copy {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--muted);
}
.pub-hero {
  text-align: center;
  padding: 36px 0 32px;
  animation: riseIn var(--dur-slow) var(--ease-out) both;
}
.pub-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--text);
}
.pub-hero p {
  margin: 0 auto;
  max-width: 40rem;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 500;
}
.pub-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}
.pub-hero-cta > * {
  animation: pubCtaStagger 0.48s var(--ease-out) both;
}
.pub-hero-cta > *:nth-child(1) {
  animation-delay: 0.06s;
}
.pub-hero-cta > *:nth-child(2) {
  animation-delay: 0.12s;
}
.pub-hero-cta > *:nth-child(3) {
  animation-delay: 0.18s;
}
.pub-hero-cta > *:nth-child(4) {
  animation-delay: 0.24s;
}
.pub-section {
  margin-top: 44px;
}
.pub-section h2 {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pub-section > p.section-lead {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 48ch;
  line-height: 1.5;
}
.pub-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .pub-cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .pub-cards--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .pub-cards--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .pub-cards--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.pub-card {
  display: block;
  padding: 22px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 24px rgba(79, 61, 240, 0.06);
  transition:
    transform var(--dur-med) var(--ease-spring),
    box-shadow var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out);
  animation: riseIn 0.5s var(--ease-out) both;
  position: relative;
  overflow: hidden;
}
.pub-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4f3df0, #6366f1, var(--citizz-zz-bright), #38bdf8);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.42s var(--ease-out);
}
.pub-card:hover::before,
.pub-card:focus-visible::before {
  transform: scaleX(1);
}
.pub-card:nth-child(1) {
  animation-delay: 0.05s;
}
.pub-card:nth-child(2) {
  animation-delay: 0.1s;
}
.pub-card:nth-child(3) {
  animation-delay: 0.15s;
}
.pub-card:nth-child(4) {
  animation-delay: 0.2s;
}
.pub-card:nth-child(5) {
  animation-delay: 0.25s;
}
.pub-card:nth-child(6) {
  animation-delay: 0.3s;
}
.pub-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(79, 61, 240, 0.14);
  border-color: rgba(79, 61, 240, 0.2);
}
.pub-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.pub-card__tag {
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}
.pub-card__title {
  margin: 0 0 6px;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pub-card__sub {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.45;
}
.pub-breadcrumb {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 500;
}
.pub-breadcrumb a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.pub-breadcrumb a:hover {
  text-decoration: underline;
}
.pub-prose {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: 0 4px 24px rgba(20, 21, 28, 0.04);
  animation: riseIn var(--dur-med) var(--ease-out) 0.04s both;
}
.pub-prose h1 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.pub-prose h2 {
  margin: 28px 0 10px;
  font-size: 1.125rem;
  font-weight: 800;
}
.pub-prose p,
.pub-prose li {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text);
}
.pub-prose ul {
  padding-left: 1.25rem;
}
.pub-prose p {
  margin: 0 0 14px;
}
.pub-callout {
  margin: 20px 0;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(
    135deg,
    rgba(79, 61, 240, 0.07) 0%,
    rgba(245, 158, 11, 0.06) 100%
  );
  border: 1px solid rgba(79, 61, 240, 0.16);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Inline wordmark inside prose headings (e.g. “Grow on CitiZZ”) */
.pub-prose h1 .pub-brand__zz,
.pub-hero:not(.pub-hero--splash) h1 .pub-brand__zz {
  filter: drop-shadow(0 1px 2px var(--citizz-zz-glow));
}
.pub-prose h1 .pub-brand__citi {
  color: var(--accent);
}
.pub-form {
  display: grid;
  gap: 16px;
  max-width: 520px;
}
.pub-form label span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 6px;
}
.pub-footer {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}
.pub-footer a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  margin: 0 6px;
  transition: color var(--dur-fast) ease, opacity var(--dur-fast) ease;
}
.pub-footer a:hover {
  text-decoration: underline;
  color: var(--accent-hover);
}
