  /* ============ Hero ============ */
  .hero {
    padding-top: clamp(48px, 7vw, 96px);
    padding-bottom: clamp(72px, 9vw, 128px);
    position: relative;
    overflow: hidden;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
  }

  .hero h1 .accent {
    font-style: normal;
    color: var(--pulse);
  }

  .hero-meta {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
  }

  .hero-meta .no-pitch {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }

  .hero-meta .no-pitch span + span::before {
    content: "·";
    margin-right: 10px;
    color: var(--line-strong);
  }

  /* Hero product preview */
  .hero-viz {
    position: relative;
    aspect-ratio: 5 / 4;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 0 var(--line), 0 30px 60px -30px rgba(14, 19, 32, .18), 0 12px 24px -16px rgba(14, 19, 32, .08);
  }
  .hero-viz > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    display: block;
  }

  .viz-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
  }
  .viz-toolbar .crumbs {
    display: flex; gap: 6px; align-items: center;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.05em;
  }
  .viz-toolbar .crumbs strong { color: var(--ink); }
  .viz-toolbar .tabs {
    display: flex; gap: 0; align-items: center;
  }
  .viz-toolbar .tabs span {
    font-size: 11px;
    padding: 5px 10px;
    color: var(--muted);
    border-radius: 6px;
  }
  .viz-toolbar .tabs span.on {
    background: var(--ink);
    color: var(--paper);
  }

  .viz-kanban {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 14px;
  }

  .kcol-head {
    font-family: var(--font-mono);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    padding: 6px 8px 8px;
    display: flex; justify-content: space-between;
    border-bottom: 1px dashed var(--line);
    margin-bottom: 8px;
  }
  .kcol-head strong { color: var(--ink); }

  .kcard {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 11px;
    margin-bottom: 8px;
    position: relative;
  }
  .kcard .name {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: -0.005em;
  }
  .kcard .meta {
    font-size: 11px;
    color: var(--muted);
    font-family: var(--font-mono);
    display: flex; justify-content: space-between;
  }
  .kcard.hot {
    background: var(--white);
    border-color: var(--pulse);
    box-shadow: 0 0 0 3px var(--pulse-tint);
  }
  .pulse-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--pulse);
    color: var(--white);
    font-size: 9.5px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 2px 6px;
    border-radius: 4px;
    position: absolute;
    top: -8px;
    right: 8px;
  }
  .pulse-tag::before {
    content: "";
    width: 5px; height: 5px;
    background: var(--white);
    border-radius: 50%;
    animation: pulseDot 1.4s ease-in-out infinite;
  }

  /* Floating AI insight callout */
  .insight-callout {
    position: absolute;
    bottom: -34px;
    right: -28px;
    width: 280px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 24px 50px -20px rgba(14, 19, 32, .35);
    transform: rotate(1.2deg);
  }
  .insight-callout .top {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--pulse-soft);
    margin-bottom: 8px;
  }
  .insight-callout .top::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--pulse);
    border-radius: 50%;
  }
  .insight-callout p {
    font-size: 13.5px;
    line-height: 1.45;
    margin: 0;
    color: var(--paper);
    font-family: var(--font-sans);
  }
  .insight-callout .src {
    font-size: 11px;
    color: rgba(247, 245, 240, .55);
    margin-top: 10px;
    font-family: var(--font-mono);
  }

  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-viz { margin-top: 12px; }
    .insight-callout {
      position: static;
      width: auto;
      max-width: 100%;
      margin: 18px auto 0;
      transform: none;
      box-shadow: 0 12px 30px -16px rgba(14, 19, 32, .25);
    }
  }
  @media (max-width: 600px) {
    .hero { padding-top: 32px; }
    .hero-viz { border-radius: 12px; }
    .insight-callout {
      padding: 14px 14px;
      border-radius: 10px;
    }
    .insight-callout p { font-size: 13px; }
  }

  /* ============ Credibility blocks ============ */
  .creds {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }
  .creds-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .cred {
    padding: 36px clamp(16px, 2.5vw, 28px);
    border-right: 1px solid var(--line);
  }
  .cred:last-child { border-right: 0; }
  .cred .num {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--ink);
    line-height: 1.05;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .cred .lbl {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 12px;
  }
  .cred .desc {
    font-size: 14px;
    color: var(--body);
    margin: 0;
    line-height: 1.45;
  }

  @media (max-width: 820px) {
    .creds-grid { grid-template-columns: 1fr 1fr; }
    .cred:nth-child(2) { border-right: 0; }
    .cred:nth-child(1), .cred:nth-child(2) { border-bottom: 1px solid var(--line); }
  }
  @media (max-width: 520px) {
    .creds-grid { grid-template-columns: 1fr; }
    .cred { border-right: 0; border-bottom: 1px solid var(--line); }
    .cred:last-child { border-bottom: 0; }
  }

  /* ============ Problem section ============ */
  .problem-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: clamp(40px, 6vw, 96px);
  }
  .sub-problems {
    display: grid;
    gap: 24px;
  }
  .sub-problem {
    padding: 24px 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 20px;
    align-items: start;
  }
  .sub-problem:last-child { border-bottom: 1px solid var(--line); }
  .sub-problem .problem-icon {
    color: var(--pulse);
    padding-top: 2px;
  }
  .sub-problem .problem-icon svg {
    display: block;
    width: 22px;
    height: 22px;
  }
  .sub-problem .h3 { margin-bottom: 6px; }
  .sub-problem p { margin: 0; color: var(--body); font-size: 15.5px; }
  .problem-conclusion {
    margin: 32px 0 0;
    color: var(--slate);
    font-size: 18px;
    line-height: 1.5;
  }

  @media (max-width: 860px) {
    .problem-grid { grid-template-columns: 1fr; }
  }

  /* ============ Diagnostic / Why ============ */
  .why-block {
    background: var(--ink);
    color: var(--paper);
    border-radius: 18px;
    padding: clamp(40px, 5vw, 72px);
  }
  .why-block .eyebrow { color: var(--pulse-soft); }
  .why-block .eyebrow::before { background: var(--pulse-soft); box-shadow: 0 0 0 4px rgba(244, 217, 210, .14); }
  .why-block h2 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(24px, 2.4vw, 32px);
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--paper);
    margin: 0 0 36px;
    max-width: 32ch;
  }
  .why-list {
    display: grid;
    gap: clamp(36px, 5vw, 56px);
    border-top: 1px solid rgba(247, 245, 240, .12);
    padding-top: 36px;
  }
  .why-item {
    min-width: 0;
    margin: 0;
  }
  .why-item-copy {
    margin: 0 0 16px;
  }
  .why-item h3 {
    color: var(--paper);
    font-size: clamp(17px, 1.8vw, 21px);
    line-height: 1.35;
    margin: 0 0 6px;
  }
  .why-item p {
    max-width: 76ch;
    color: rgba(247, 245, 240, .72);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
  }
  .why-image-viewport {
    overflow-x: auto;
    border: 1px solid rgba(247, 245, 240, .16);
    border-radius: 12px;
    background: #f7f8fa;
    box-shadow: 0 18px 42px rgba(5, 11, 35, .24);
    scrollbar-color: rgba(91, 106, 191, .75) rgba(247, 245, 240, .14);
    scrollbar-width: thin;
  }
  .why-image-viewport:focus-visible {
    outline: 3px solid var(--pulse-soft);
    outline-offset: 4px;
  }
  .why-image-viewport img {
    display: block;
    width: 100%;
    height: auto;
  }
  .why-fullsize {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    margin-top: 12px;
    color: var(--pulse-soft);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
  }
  .why-fullsize:hover { text-decoration: underline; }

  @media (max-width: 640px) {
    .why-image-viewport img {
      width: 820px;
      max-width: none;
    }
  }

  /* ============ What Good Looks Like ============ */
  .good-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
    gap: clamp(40px, 6vw, 96px);
    align-items: start;
  }
  .good-list {
    display: grid;
    gap: 0;
  }
  .good-item {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 18px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    align-items: start;
  }
  .good-item:last-child { border-bottom: 1px solid var(--line); }
  .good-item .check {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--pulse);
    color: var(--white);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
  }
  .good-item .check svg { width: 12px; height: 12px; }
  .good-item h3 { margin-bottom: 4px; }
  .pulse-carousel {
    min-width: 0;
  }
  .pulse-carousel-frame {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--paper-warm);
    box-shadow: 0 1px 0 var(--line), 0 24px 48px -30px rgba(14, 19, 32, .2);
  }
  .pulse-carousel-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .55s ease, visibility .55s ease;
  }
  .pulse-carousel-slide.is-active {
    opacity: 1;
    visibility: visible;
  }
  .pulse-carousel-slide img {
    position: absolute;
    top: 14px;
    left: 14px;
    display: block;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    filter: drop-shadow(0 8px 18px rgba(14, 19, 32, .1));
  }
  .pulse-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 18px;
  }
  .pulse-carousel-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--line-strong);
    cursor: pointer;
    transition: width .2s ease, border-radius .2s ease, background .2s ease;
  }
  .pulse-carousel-dot.is-active {
    width: 24px;
    border-radius: 999px;
    background: var(--pulse);
  }

  @media (prefers-reduced-motion: reduce) {
    .pulse-carousel-slide { transition: none; }
  }

  @media (max-width: 840px) {
    .good-grid { grid-template-columns: 1fr; }
  }

  /* ============ How it works (mechanics) ============ */
  .mech-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
  .mech {
    padding: 28px 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    position: relative;
  }
  .mech .step {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--pulse);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .mech h3 { font-size: 20px; margin-bottom: 10px; line-height: 1.3; }
  .mech p { font-size: 14.5px; color: var(--body); margin: 0; line-height: 1.55; }
  .mech .ic {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--paper-warm);
    display: grid; place-items: center;
    margin-bottom: 18px;
  }
  .mech .ic svg { width: 18px; height: 18px; }
  @media (max-width: 1200px) { .mech-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 820px) { .mech-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 520px) { .mech-grid { grid-template-columns: 1fr; } }

  /* ============ Two-column install/team ============ */
  .duo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
  }
  .duo {
    padding: clamp(28px, 3vw, 44px);
  }
  .duo + .duo { border-left: 1px solid var(--line); }
  .duo .duo-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    margin-bottom: 14px;
  }
  .duo h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 28px;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0 0 28px;
  }
  .duo ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
  }
  .duo li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 14px;
    align-items: start;
    font-size: 15px;
    color: var(--body);
    line-height: 1.5;
  }
  .duo li::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--pulse);
    margin-top: 9px;
  }
  .duo li strong { display: block; color: var(--ink); margin-bottom: 2px; }

  @media (max-width: 760px) {
    .duo-grid { grid-template-columns: 1fr; }
    .duo + .duo { border-left: 0; border-top: 1px solid var(--line); }
  }

  /* ============ CTA banners ============ */
  .cta-banner {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: clamp(32px, 4vw, 56px);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: center;
  }
  .cta-banner h2 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(26px, 2.8vw, 36px);
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin: 0 0 14px;
    max-width: 18ch;
    text-wrap: balance;
  }
  .cta-banner p { font-size: 15.5px; color: var(--body); margin: 0; max-width: 50ch; }
  .cta-banner-cta {
    display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
    justify-self: end;
  }
  .cta-banner-cta .micro {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  @media (max-width: 760px) {
    .cta-banner { grid-template-columns: 1fr; }
    .cta-banner-cta { justify-self: start; }
  }

  /* ============ After demo / next step ============ */
  .next-step {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
  }
  .step-list {
    counter-reset: nstep;
    display: grid;
    gap: 0;
  }
  .step-row {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    align-items: start;
  }
  .step-row:last-child { border-bottom: 1px solid var(--line); }
  .step-row .n {
    font-family: var(--font-serif);
    font-size: 42px;
    color: var(--pulse);
    line-height: 1;
  }
  .step-row h3 { margin-bottom: 4px; }
  .step-row p { font-size: 15px; color: var(--body); margin: 0; }
  @media (max-width: 820px) { .next-step { grid-template-columns: 1fr; } }

  .pricing-teaser {
    background: var(--paper-warm);
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    padding: 26px 28px;
    margin-top: 32px;
  }
  .pricing-teaser .ttl {
    font-size: 11px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--pulse);
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .pricing-teaser .ttl::before {
    content: "";
    width: 18px;
    height: 1px;
    background: var(--pulse);
  }
  .pricing-teaser h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 0 0 8px;
    max-width: 22ch;
  }
  .pricing-teaser p { font-size: 14.5px; color: var(--body); margin: 0 0 16px; line-height: 1.55; max-width: 44ch; }
  .pricing-teaser a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: underline;
    text-decoration-color: var(--pulse);
    text-underline-offset: 4px;
  }
  .pricing-teaser a:hover { color: var(--pulse); }

  /* ============ Why us ============ */
  .reasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
  }
  .reason {
    padding: 32px 36px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .reason:nth-child(2n) { border-right: 0; }
  .reason:nth-last-child(-n+2) { border-bottom: 0; }
  .reason .ic {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--pulse);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }
  .reason h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 20px;
    color: var(--ink);
    margin: 0 0 10px;
    letter-spacing: -0.005em;
    line-height: 1.3;
  }
  .reason p { font-size: 14.5px; color: var(--body); margin: 0; line-height: 1.55; }
  @media (max-width: 720px) {
    .reasons-grid { grid-template-columns: 1fr; }
    .reason { border-right: 0; }
    .reason:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  }

  /* ============ FAQ ============ */
  .faq-list {
    border-top: 1px solid var(--line);
  }
  .faq {
    border-bottom: 1px solid var(--line);
  }
  .faq-q {
    width: 100%;
    background: none;
    border: 0;
    padding: 26px 0;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    letter-spacing: -0.005em;
  }
  .faq-q .pm {
    width: 22px; height: 22px;
    position: relative;
    flex-shrink: 0;
  }
  .faq-q .pm::before, .faq-q .pm::after {
    content: "";
    position: absolute;
    background: var(--ink);
    top: 50%; left: 50%;
    transition: transform .2s ease;
  }
  .faq-q .pm::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
  .faq-q .pm::after { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
  .faq.open .faq-q .pm::after { transform: translate(-50%, -50%) scaleY(0); }
  .faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s ease;
  }
  .faq.open .faq-a { max-height: 400px; }
  .faq-a-inner {
    padding: 0 80px 32px 0;
    font-size: 15.5px;
    color: var(--body);
    line-height: 1.65;
  }
  .faq-a-inner p { margin: 0; }

  /* ============ Final CTA ============ */
  .final-cta {
    background: var(--ink);
    color: var(--paper);
    border-radius: 22px;
    padding: clamp(56px, 8vw, 112px) clamp(32px, 5vw, 80px);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: "";
    position: absolute;
    inset: -40% -20% auto auto;
    width: 60%;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(91, 106, 191, .25), transparent 60%);
    pointer-events: none;
  }
  .final-cta h2 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(30px, 3.6vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--paper);
    margin: 0 auto 20px;
    max-width: 18ch;
    position: relative;
  }
  .final-cta h2 em { font-style: italic; color: var(--pulse); }
  .final-cta p {
    color: rgba(247, 245, 240, .7);
    font-size: 16px;
    max-width: 48ch;
    margin: 0 auto 36px;
    position: relative;
  }
  .final-cta .btn-accent { position: relative; }

  /* ============ Misc helpers ============ */
  .lead-block { max-width: 38ch; }
  .lead-block .h1 { margin-bottom: 16px; }
  .sec-intro p { font-size: 17px; color: var(--ink-soft); max-width: 60ch; }

  .anchor-offset { scroll-margin-top: 80px; }

  /* ============ Built for every sales role ============ */
  .roles-section { padding-top: clamp(72px, 9vw, 128px); padding-bottom: clamp(56px, 7vw, 96px); }
  .roles-intro { max-width: 60ch; margin-bottom: 48px; }
  .roles-intro h2 { margin-bottom: 16px; }
  .roles-intro p { font-size: 17px; color: var(--ink-soft); max-width: 56ch; margin: 0; }

  .role-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .role-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 32px 30px;
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 0;
    transition: border-color .15s ease, transform .15s ease;
  }
  .role-card:hover {
    border-color: var(--pulse);
    transform: translateY(-2px);
  }
  .role-card .rc-num {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--pulse);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
  }
  .role-card .rc-num::before {
    content: "";
    width: 18px;
    height: 1px;
    background: var(--pulse);
  }
  .role-card .rc-role {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 0 0 12px;
  }
  .role-card .rc-body {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--body);
    margin: 0;
  }

  @media (max-width: 1080px) {
    .role-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px) {
    .role-grid { grid-template-columns: 1fr; }
  }

  /* Signals strip below */
  .signals-catalog {
    margin-top: 0;
  }
  .signal-section {
    background: var(--paper-warm);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .signals-catalog-head {
    max-width: 64ch;
    margin-bottom: 28px;
  }
  .signals-catalog-head h2 {
    margin: 0;
    max-width: 24ch;
  }
  .signal-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }
  .signal-category {
    min-width: 0;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
  }
  .signal-category-head {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
  }
  .signal-category-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--pulse);
    background: var(--paper-warm);
  }
  .signal-category-icon svg { width: 21px; height: 21px; }
  .signal-category h3 {
    margin: 0;
    color: var(--ink);
    font-size: 18px;
  }
  .signal-category ul {
    list-style: none;
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
  }
  .signal-category li {
    color: var(--body);
    font-size: 14.5px;
    line-height: 1.4;
  }

  @media (max-width: 980px) {
    .signal-category-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px) {
    .signal-category-grid { grid-template-columns: 1fr; }
  }

  /* ============ Why Pulse is different ============ */
  .diff-section { padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(72px, 9vw, 128px); }
  .diff-intro { max-width: 64ch; margin-bottom: 48px; }
  .diff-intro h2 { margin-bottom: 16px; max-width: 22ch; }
  .diff-intro p { font-size: 17px; color: var(--ink-soft); max-width: 60ch; margin: 0; }

  .diff-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }
  .diff-grid > .role-card:nth-child(1) { grid-column: span 2; }
  .diff-grid > .role-card:nth-child(2) { grid-column: span 2; }
  .diff-grid > .role-card:nth-child(3) { grid-column: span 2; }
  .diff-grid > .role-card:nth-child(4) { grid-column: 2 / span 2; }
  .diff-grid > .role-card:nth-child(5) { grid-column: 4 / span 2; }

  @media (max-width: 1080px) {
    .diff-grid { grid-template-columns: 1fr 1fr; }
    .diff-grid > .role-card { grid-column: auto !important; }
    .diff-grid > .role-card:nth-child(5) { grid-column: 1 / span 2 !important; }
  }
  @media (max-width: 560px) {
    .diff-grid { grid-template-columns: 1fr; }
    .diff-grid > .role-card:nth-child(5) { grid-column: auto !important; }
  }

  /* ============ Bridge / The shift ============ */
  .bridge {
    background: var(--paper-warm);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: clamp(72px, 9vw, 128px) 0;
  }
  .bridge-inner {
    max-width: 1080px;
    margin: 0 auto;
    text-align: left;
    position: relative;
  }
  .bridge-rule {
    width: 56px;
    height: 1px;
    background: var(--pulse);
    margin: 0 auto 22px;
  }
  .bridge .eyebrow {
    justify-content: flex-start;
    margin-bottom: 18px;
  }
  .bridge h2 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: clamp(28px, 2.8vw, 36px);
    line-height: 1.25;
    letter-spacing: -0.012em;
    color: var(--ink);
    margin: 0 0 28px;
    max-width: 18ch;
    text-wrap: balance;
  }
  .bridge h2 em {
    font-style: normal;
    color: var(--pulse);
  }
  .bridge-body {
    max-width: 56ch;
    margin: 0 auto;
    display: grid;
    gap: 18px;
  }
  .bridge-body p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin: 0;
  }
  .bridge-body p strong {
    color: var(--ink);
    font-weight: 600;
  }
  .bridge-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
    text-align: left;
  }
  .bridge-comparison-col {
    padding: 30px 38px 0;
  }
  .bridge-comparison-col:first-child {
    border-right: 1px solid var(--line);
  }
  .bridge-comparison h3 {
    margin: 0 0 20px;
    color: var(--ink);
    font-size: 21px;
  }
  .bridge-comparison ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
  }
  .bridge-comparison li {
    position: relative;
    padding-left: 18px;
    color: var(--ink-soft);
    font-size: 15.5px;
    line-height: 1.5;
  }
  .bridge-comparison li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--muted);
  }
  .bridge-comparison-col.pulse li::before { background: var(--pulse); }

  @media (max-width: 720px) {
    .bridge-comparison { grid-template-columns: 1fr; }
    .bridge-comparison-col { padding: 26px 0; }
    .bridge-comparison-col:first-child {
      border-right: 0;
      border-bottom: 1px solid var(--line);
    }
  }

  /* ============================================
     Built for the field — mobile-first band
     ============================================ */
  .field {
    padding: clamp(40px, 5vw, 80px) 0;
  }
  .field-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
    background: var(--ink);
    color: var(--paper);
    border-radius: 22px;
    padding: clamp(40px, 5vw, 80px) clamp(28px, 4vw, 64px);
    overflow: hidden;
    position: relative;
  }
  .field-inner::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 85% 20%, rgba(91,106,191,.28), transparent 55%),
      radial-gradient(circle at 15% 90%, rgba(91,106,191,.18), transparent 60%);
    pointer-events: none;
  }
  .field-copy { position: relative; z-index: 1; }
  .field-copy .eyebrow { color: var(--pulse-soft); }
  .field-copy .eyebrow::before { background: var(--pulse-soft); box-shadow: 0 0 0 4px rgba(244, 217, 210, .14); }
  .field-copy h2 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: clamp(26px, 2.9vw, 38px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--paper);
    margin: 14px 0 18px;
    max-width: 18ch;
    text-wrap: balance;
  }
  .field-copy > p {
    font-size: 16.5px;
    color: rgba(247,247,251,.78);
    line-height: 1.65;
    max-width: 46ch;
    margin: 0 0 28px;
  }
  .field-moments {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .field-moments li {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 18px;
    align-items: baseline;
    padding: 14px 0;
    border-top: 1px solid rgba(247,247,251,.12);
  }
  .field-moments li:last-child { border-bottom: 1px solid rgba(247,247,251,.12); }
  .field-moments .when {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--pulse-soft);
  }
  .field-moments .what {
    font-size: 15px;
    color: rgba(247,247,251,.88);
    line-height: 1.55;
  }

  /* Phone mockup */
  .phone-stage {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    min-height: 600px;
  }
  .phone {
    width: 286px;
    height: 580px;
    background: #0B1334;
    border-radius: 38px;
    padding: 10px;
    box-shadow:
      0 30px 60px -20px rgba(0,0,0,.55),
      0 0 0 1px rgba(255,255,255,.06) inset;
    position: relative;
    transform: rotate(-2deg);
  }
  .phone::before {
    content: "";
    position: absolute;
    top: 18px; left: 50%; transform: translateX(-50%);
    width: 96px; height: 22px;
    background: #0B1334;
    border-radius: 16px;
    z-index: 3;
  }
  .phone-screen {
    width: 100%; height: 100%;
    background: var(--paper);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    display: block;
  }
  .phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }
  .phone-status {
    display: flex; align-items: flex-end; justify-content: space-between;
    padding: 8px 24px 0;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--ink);
    font-weight: 600;
  }
  .phone-status .icons { display: flex; gap: 4px; align-items: center; }
  .phone-status .icons span {
    width: 14px; height: 9px; border-radius: 2px;
    background: var(--ink);
  }
  .phone-status .icons span.bat { width: 20px; height: 10px; border: 1.2px solid var(--ink); background: transparent; position: relative; }
  .phone-status .icons span.bat::before {
    content:""; position:absolute; inset: 1.5px; right: 6px;
    background: var(--ink); border-radius: 1px;
  }
  .phone-header {
    padding: 14px 18px 10px;
    background: var(--paper);
  }
  .phone-header .crm {
    font-family: var(--font-mono);
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
  }
  .phone-header .title {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-top: 2px;
    letter-spacing: -0.01em;
  }
  .phone-header .chips { display: flex; gap: 6px; margin-top: 10px; }
  .phone-header .chip {
    font-family: var(--font-mono);
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--paper-warm);
    color: var(--muted);
  }
  .phone-header .chip.on { background: var(--ink); color: var(--paper); }
  .phone-feed {
    overflow: hidden;
    padding: 8px 14px 14px;
    background: var(--paper-warm);
    display: grid;
    gap: 10px;
    align-content: start;
  }
  .pcard {
    background: var(--white);
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 1px 2px rgba(30,42,94,.06);
    display: grid;
    gap: 6px;
  }
  .pcard .row1 { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
  .pcard .acct { font-size: 13px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
  .pcard .score {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 6px;
    letter-spacing: 0.04em;
  }
  .pcard .score.hot { background: #FBE3DC; color: #B23E1F; }
  .pcard .score.warm { background: var(--amber-soft); color: var(--amber); }
  .pcard .score.cool { background: var(--pulse-tint); color: var(--pulse-deep); }
  .pcard .signal { font-size: 11.5px; color: var(--body); line-height: 1.4; }
  .pcard .signal b { color: var(--ink); font-weight: 600; }
  .pcard .meta {
    display: flex; align-items: center; gap: 6px;
    font-family: var(--font-mono);
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
  }
  .pcard .meta::before {
    content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--pulse);
  }
  .phone-tabbar {
    background: var(--white);
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
  }
  .phone-tabbar .tab {
    display: grid;
    place-items: center;
    gap: 4px;
    font-family: var(--font-mono);
    font-size: 8.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
  }
  .phone-tabbar .tab .dot {
    width: 16px; height: 16px; border-radius: 5px; background: var(--paper-warm);
  }
  .phone-tabbar .tab.on { color: var(--ink); }
  .phone-tabbar .tab.on .dot { background: var(--ink); }
  .phone-shadow {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
  }
  .phone-shadow::after {
    content: "";
    width: 240px; height: 480px;
    border: 1px dashed rgba(247,247,251,.18);
    border-radius: 36px;
    transform: rotate(6deg) translate(40px, 12px);
  }

  @media (max-width: 880px) {
    .field-inner { grid-template-columns: 1fr; padding: 36px 24px; }
    .phone-stage { min-height: 0; margin-top: 8px; }
    .phone { transform: rotate(0deg); }
    .phone-shadow { display: none; }
  }
  @media (max-width: 600px) {
    .field-moments li { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
    .phone-stage { min-height: 0; }
    .phone { width: 250px; height: 510px; }
  }

  /* ============ Territory-aware intelligence ============ */
  .territory-inner {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(40px, 6vw, 88px);
    align-items: center;
    padding: clamp(40px, 5vw, 72px);
    overflow: hidden;
    position: relative;
    color: var(--paper);
    background: var(--ink);
    border-radius: 22px;
  }
  .territory-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 88% 18%, rgba(91,106,191,.3), transparent 52%),
      radial-gradient(circle at 10% 95%, rgba(91,106,191,.17), transparent 55%);
  }
  .territory-copy,
  .territory-map-card {
    position: relative;
    z-index: 1;
  }
  .territory-copy .eyebrow { color: var(--pulse-soft); }
  .territory-copy .eyebrow::before {
    background: var(--pulse-soft);
    box-shadow: 0 0 0 4px rgba(244,217,210,.14);
  }
  .territory-copy h2 {
    margin: 14px 0 16px;
    max-width: 13ch;
    color: var(--paper);
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.12;
    letter-spacing: -.03em;
    text-wrap: balance;
  }
  .territory-subtitle {
    margin: 0;
    max-width: 28ch;
    color: rgba(247,247,251,.75);
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.45;
  }
  .territory-takeaway {
    display: flex;
    gap: 13px;
    align-items: center;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(247,247,251,.14);
    color: rgba(247,247,251,.9);
    font-size: 15.5px;
    line-height: 1.5;
  }
  .territory-takeaway-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--pulse-soft);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.11);
  }
  .territory-takeaway-icon svg { width: 20px; height: 20px; }
  .territory-map-card {
    padding: 18px;
    background: var(--white);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 17px;
    box-shadow: 0 28px 60px -32px rgba(0,0,0,.65);
  }
  .territory-map-label {
    margin: 0 0 13px;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: .13em;
  }
  .territory-map {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper-warm);
  }
  .territory-map svg { display: block; width: 100%; height: auto; }
  .territory-map img { display: block; width: 100%; height: auto; }
  .territory-map .map-land {
    fill: #FAF8ED;
    stroke: var(--line-strong);
    stroke-width: 2;
  }
  .territory-map .map-lake {
    fill: #DDEAF5;
    stroke: #9ABCD3;
    stroke-width: 1.5;
  }
  .territory-map .map-state {
    fill: none;
    stroke: #B8B7B0;
    stroke-width: 1.5;
  }
  .territory-map .map-territory {
    fill: rgba(91,106,191,.08);
    stroke: var(--pulse);
    stroke-width: 2;
    stroke-dasharray: 7 7;
  }
  .territory-map .map-city circle {
    fill: var(--pulse);
    stroke: var(--ink);
    stroke-width: 2;
  }
  .territory-map .map-city text {
    fill: var(--ink);
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
  }
  @media (max-width: 880px) {
    .territory-inner { grid-template-columns: 1fr; padding: 36px 24px; }
    .territory-copy h2,
    .territory-subtitle { max-width: none; }
  }
  @media (max-width: 520px) {
    .territory-map-card { padding: 10px; }
    .territory-map .map-city text { font-size: 18px; }
  }

  /* ============ Alerts vs Pulse comparison ============ */
  .alerts-vs {
    background: var(--ink);
    color: var(--paper);
    border-radius: 22px;
    padding: clamp(40px, 5vw, 72px);
    position: relative;
    overflow: hidden;
  }
  .alerts-vs::before {
    content: "";
    position: absolute;
    inset: -30% -10% auto auto;
    width: 60%;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(91,106,191,.22), transparent 60%);
    pointer-events: none;
  }
  .alerts-vs-head { position: relative; max-width: 56ch; margin-bottom: 44px; }
  .alerts-vs-head .eyebrow { color: var(--pulse-soft); }
  .alerts-vs-head .eyebrow::before { background: var(--pulse-soft); box-shadow: 0 0 0 4px rgba(244, 217, 210, .14); }
  .alerts-vs-head h2 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(26px, 2.8vw, 36px);
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--paper);
    margin: 14px 0 16px;
    max-width: 22ch;
    text-wrap: balance;
  }
  .alerts-vs-head p { font-size: 16.5px; color: rgba(247,247,251,.72); margin: 0; line-height: 1.6; max-width: 52ch; }

  .alerts-vs-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .alerts-vs-col {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 28px 30px;
  }
  .alerts-vs-col .avl {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .alerts-vs-bad .avl { color: rgba(247,247,251,.55); }
  .alerts-vs-bad .avl::before { content: ""; width: 18px; height: 1px; background: rgba(247,247,251,.4); }
  .alerts-vs-good { background: rgba(91,106,191,.12); border-color: rgba(91,106,191,.45); }
  .alerts-vs-good .avl { color: var(--pulse-soft); }
  .alerts-vs-good .avl::before { content: ""; width: 18px; height: 1px; background: var(--pulse); }
  .alerts-vs-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
  .alerts-vs-col li {
    position: relative;
    padding-left: 22px;
    font-size: 14.5px;
    line-height: 1.55;
    color: rgba(247,247,251,.85);
  }
  .alerts-vs-bad li { color: rgba(247,247,251,.6); }
  .alerts-vs-col li::before {
    content: "";
    position: absolute;
    left: 0; top: 8px;
    width: 10px; height: 10px;
  }
  .alerts-vs-bad li::before {
    background: linear-gradient(45deg, transparent 45%, rgba(247,247,251,.4) 45%, rgba(247,247,251,.4) 55%, transparent 55%),
                linear-gradient(-45deg, transparent 45%, rgba(247,247,251,.4) 45%, rgba(247,247,251,.4) 55%, transparent 55%);
  }
  .alerts-vs-good li::before {
    background: var(--pulse);
    border-radius: 50%;
    top: 9px;
    width: 8px; height: 8px;
  }
  @media (max-width: 820px) {
    .alerts-vs-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .alerts-vs { padding: 32px 24px; }
    .alerts-vs-col { padding: 22px 22px; }
  }

  /* ============ Vertical rhythm: tighten section spacing ============ */
  :root { --section-y: clamp(44px, 5.5vw, 80px); }
  .section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
  .section-tight { padding-top: clamp(32px, 4vw, 56px); padding-bottom: clamp(32px, 4vw, 56px); }
  .roles-section { padding-top: clamp(44px, 5.5vw, 80px); padding-bottom: clamp(36px, 4.5vw, 64px); }
  .diff-section { padding-top: clamp(36px, 4.5vw, 64px); padding-bottom: clamp(44px, 5.5vw, 80px); }
  .bridge { padding: clamp(44px, 5.5vw, 80px) 0; }
  .field { padding: clamp(28px, 3.5vw, 56px) 0; }
  .hero { padding-bottom: clamp(48px, 6vw, 88px); }
  .roles-intro, .diff-intro { margin-bottom: 36px; }

/* ============ Page-specific utility classes ============ */
.nav-links .nav-demo,
.nav-links .nav-demo:hover { color: var(--white); }
.hero-title { font-size: 40px; }
.hero-lede { margin-top: 28px; }
.trial-note {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.trial-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pulse);
}
.hero-viz-wrap { position: relative; }
.problem-headline {
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-size: clamp(28px, 2.8vw, 36px);
}
.mechanics-section {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mechanics-intro { max-width: 60ch; margin-bottom: 56px; }
.trial-eyebrow { margin-bottom: 14px; }
.why-us-intro { margin-bottom: 48px; }
.faq-intro { margin-bottom: 32px; }
.footer-brand { margin-bottom: 12px; }
.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  max-width: 32ch;
  margin-top: 8px;
}
.footer-privacy { color: var(--muted); text-decoration: none; }

/* Editor overrides */
.cred >:is(h1,h2,h3,h4,h5,h6,p,li,dt,dd,blockquote,figcaption,label,span,a,em,strong,small,td,th,caption) >:is(h1,h2,h3,h4,h5,h6,p,li,dt,dd,blockquote,figcaption,label,span,a,em,strong,small,td,th,caption) { font-family: Poppins !important }
.cred >:is(h1,h2,h3,h4,h5,h6,p,li,dt,dd,blockquote,figcaption,label,span,a,em,strong,small,td,th,caption) >:is(h1,h2,h3,h4,h5,h6,p,li,dt,dd,blockquote,figcaption,label,span,a,em,strong,small,td,th,caption) { font-size: 14px !important }
.cred >:is(h1,h2,h3,h4,h5,h6,p,li,dt,dd,blockquote,figcaption,label,span,a,em,strong,small,td,th,caption) >:is(h1,h2,h3,h4,h5,h6,p,li,dt,dd,blockquote,figcaption,label,span,a,em,strong,small,td,th,caption) { color: rgba(51, 51, 51, 0.2) !important }
.cred >:is(h1,h2,h3,h4,h5,h6,p,li,dt,dd,blockquote,figcaption,label,span,a,em,strong,small,td,th,caption) >:is(h1,h2,h3,h4,h5,h6,p,li,dt,dd,blockquote,figcaption,label,span,a,em,strong,small,td,th,caption) { color: rgb(51, 51, 51) !important }
