/* =============================================================
   Digital Hive — About page (reimagined, condensed)
   Builds on tokens.css + site.css. Prefix: ab2-
   ============================================================= */

/* -----------------------------------------------------------
   Shared: art-slot — labeled illustration placeholder
   ----------------------------------------------------------- */
.art-slot {
  position: relative;
  border: 1px dashed var(--dh-grey-light);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(60% 70% at 70% 20%, rgba(243,146,53,0.08) 0%, transparent 70%),
    radial-gradient(50% 60% at 18% 85%, rgba(250,180,0,0.06) 0%, transparent 70%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 52'><polygon points='30,1 59,17 59,35 30,51 1,35 1,17' fill='none' stroke='%23193359' stroke-width='0.6' stroke-opacity='0.10'/></svg>"),
    var(--dh-white);
  background-size: auto, auto, 60px 52px, auto;
  overflow: hidden;
}
.art-slot__tag {
  position: absolute;
  left: 14px; bottom: 14px; right: 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.45;
  color: var(--fg-2);
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
}
.art-slot__tag b {
  color: var(--dh-orange);
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 10px;
}

/* -----------------------------------------------------------
   1 — HERO (split) + integrated trust strip
   ----------------------------------------------------------- */
.ab2-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-2);
  background: linear-gradient(180deg, #ECF1F6 0%, #F2F5F9 100%);
  padding: 56px 0 40px;
}
@media (min-width: 768px) { .ab2-hero { padding: 80px 0 56px; } }

/* ghost button needs a solid base on the tinted hero */
.ab2-hero .btn--ghost,
.ab2-hero .btn--ghost:hover { background: #fff; }

.ab2-hero__grid {
  display: grid;
  gap: var(--space-7);
  align-items: center;
}
@media (min-width: 960px) {
  .ab2-hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 64px; }
}
.ab2-hero h1 {
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--dh-navy);
  margin: var(--space-4) 0 var(--space-5);
  max-width: 16ch;
}
.ab2-hero__sub {
  font-size: var(--fs-18);
  color: var(--fg-2);
  margin: 0 0 var(--space-6);
  max-width: 50ch;
  line-height: 1.5;
}
.ab2-hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-3); }

.ab2-hero__art {
  aspect-ratio: 5 / 4;
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: var(--space-5);
}
.hive-svg {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
}

/* Trust strip — white so it reads distinct from the hero above
   and the paper observation section below */
.ab2-trust-band {
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  background: var(--dh-white);
}
.ab2-trust {
  padding: var(--space-6) 0 var(--space-7);
}
.ab2-trust__label {
  text-align: center;
  font-size: var(--fs-12);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  color: var(--fg-2);
  font-weight: var(--fw-bold);
  margin: 0 0 var(--space-5);
}
.ab2-trust__row {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
@media (prefers-reduced-motion: reduce) {
  .ab2-trust__row {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4) var(--space-7);
    mask-image: none;
    -webkit-mask-image: none;
  }
  .ab2-trust__row .proof__track:last-child { display: none; }
}
.ab2-trust__note {
  display: block;
  text-align: center;
  margin-top: var(--space-4);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dh-orange);
}

/* -----------------------------------------------------------
   2 — CLARITY PROBLEM (two-column split)
   ----------------------------------------------------------- */
.ab2-observation {
  padding: 56px 0;
  border-bottom: 1px solid var(--border-2);
}
@media (min-width: 768px) { .ab2-observation { padding: 80px 0; } }

.ab2-observation__grid {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 860px) {
  .ab2-observation__grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.ab2-observation h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -0.02em;
  color: var(--dh-navy);
  margin: var(--space-3) 0 0;
  line-height: 1.12;
}

.ab2-observation__statement {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: var(--fw-semibold);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--dh-navy);
  margin: 0 0 var(--space-5);
}
.ab2-observation__statement .accent { color: var(--dh-orange); }

.ab2-observation__body {
  font-size: var(--fs-16);
  color: var(--fg-2);
  line-height: 1.6;
  margin: 0 0 var(--space-5);
}

.ab2-observation__callout {
  margin: 0;
  padding: var(--space-3) var(--space-5);
  border-left: 3px solid var(--dh-orange);
  font-size: var(--fs-16);
  color: var(--fg-1);
  line-height: 1.6;
}
.ab2-observation__callout .accent {
  color: var(--dh-orange);
  font-weight: var(--fw-semibold);
}

/* -----------------------------------------------------------
   3 — WHY DIGITAL HIVE (muted band)
   ----------------------------------------------------------- */
.ab2-why-sec {
  background: var(--bg-3);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .ab2-why-sec { padding: 72px 0; } }
.ab2-why-sec::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 52'><polygon points='30,1 59,17 59,35 30,51 1,35 1,17' fill='none' stroke='%23193359' stroke-width='0.6' stroke-opacity='0.05'/></svg>");
  background-size: 60px 52px;
  pointer-events: none;
}
.ab2-why-sec .container { position: relative; }

.ab2-why-sec__inner {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 860px) {
  .ab2-why-sec__inner { grid-template-columns: 1fr 1fr; gap: 72px; }
}

.ab2-why-sec__lead h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  color: var(--dh-navy);
  letter-spacing: -0.02em;
  margin: var(--space-3) 0 var(--space-4);
  line-height: 1.12;
}
.ab2-why-sec__lead > p {
  font-size: var(--fs-16); color: var(--fg-2);
  margin: 0 0 var(--space-5); line-height: 1.6;
}
.ab2-why-sec__callout {
  margin: 0;
  padding: var(--space-3) var(--space-5);
  border-left: 3px solid var(--dh-orange);
  font-size: var(--fs-16);
  font-weight: var(--fw-semibold);
  color: var(--dh-navy);
  line-height: 1.5;
}

.ab2-why-cards {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: var(--space-4);
  grid-template-columns: 1fr 1fr;
}
.ab2-why-card {
  background: var(--dh-white);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex; flex-direction: column; gap: var(--space-2);
}
.ab2-why-card__ico {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  color: var(--dh-navy);
  margin-bottom: var(--space-1);
}
.ab2-why-card__ico svg { width: 22px; height: 22px; }
.ab2-why-card__title {
  display: block;
  font-size: var(--fs-15); font-weight: var(--fw-bold);
  color: var(--dh-navy); letter-spacing: -0.01em;
}
.ab2-why-card__desc {
  font-size: var(--fs-14); color: var(--fg-2); line-height: 1.55; margin: 0;
}
@media (max-width: 480px) {
  .ab2-why-card__desc,
  .cap p,
  .ab2-person__role { font-size: var(--fs-15); }
}

/* stagger cards in when the parent reveal fires */
.ab2-why-cards .ab2-why-card {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out);
}
.ab2-why-sec__inner.is-visible .ab2-why-card { opacity: 1; transform: none; }
.ab2-why-sec__inner.is-visible .ab2-why-card:nth-child(2) { transition-delay: 60ms; }
.ab2-why-sec__inner.is-visible .ab2-why-card:nth-child(3) { transition-delay: 120ms; }
.ab2-why-sec__inner.is-visible .ab2-why-card:nth-child(4) { transition-delay: 180ms; }
@media (prefers-reduced-motion: reduce) {
  .ab2-why-cards .ab2-why-card { opacity: 1; transform: none; transition: none; }
}

/* -----------------------------------------------------------
   4 — WHAT WE DO: 4 capability cards
   ----------------------------------------------------------- */
.ab2-do { background: var(--bg-1); padding: 56px 0; }
@media (min-width: 768px) { .ab2-do { padding: 72px 0; } }
.ab2-do__head {
  display: grid; gap: var(--space-5);
  margin-bottom: var(--space-7);
}
@media (min-width: 860px) {
  .ab2-do__head { grid-template-columns: 1fr 1fr; align-items: end; gap: var(--space-8); }
}
.ab2-do__head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.02em;
  color: var(--dh-navy);
  margin: var(--space-3) 0 0;
  line-height: 1.1;
  max-width: 16ch;
}
.ab2-do__head p {
  font-size: var(--fs-18);
  color: var(--fg-2);
  margin: 0;
  line-height: 1.6;
  max-width: 46ch;
}
.ab2-do__grid {
  display: grid; gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 600px)  { .ab2-do__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .ab2-do__grid { grid-template-columns: repeat(4, 1fr); } }

.cap {
  display: flex; flex-direction: column;
  padding: var(--space-6);
  background: var(--dh-white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
@media (hover: hover) {
  .cap:hover { border-color: var(--dh-yellow); box-shadow: 0 1px 0 var(--dh-yellow), var(--shadow-2); transform: translateY(-2px); }
}
.cap:active { transform: scale(0.98); }
.cap__ico {
  position: relative;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: var(--dh-navy);
  margin-bottom: var(--space-5);
}
.cap__ico .hex { position: absolute; inset: 0; opacity: 0.35; }
.cap__ico .glyph { position: relative; width: 22px; height: 22px; }
.cap h3 { font-size: var(--fs-20); color: var(--dh-navy); margin: 0 0 var(--space-2); letter-spacing: -0.01em; }
.cap p { font-size: var(--fs-14); color: var(--fg-2); margin: 0; line-height: 1.5; }
.ab2-do__close {
  margin: var(--space-7) 0 0;
  font-size: var(--fs-18);
  color: var(--dh-navy);
  font-weight: var(--fw-medium);
  text-wrap: balance;
}
.ab2-do__close .accent { color: var(--dh-orange); }

/* -----------------------------------------------------------
   5 — WHO WE SERVE + BY THE NUMBERS (dark navy band)
   ----------------------------------------------------------- */
.ab2-serve {
  background: var(--dh-navy);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .ab2-serve { padding: 72px 0; } }
.ab2-serve::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 52'><polygon points='30,1 59,17 59,35 30,51 1,35 1,17' fill='none' stroke='%23ffffff' stroke-width='0.4' stroke-opacity='0.06'/></svg>");
  background-size: 60px 52px;
  pointer-events: none;
}
.ab2-serve .container { position: relative; }
.ab2-serve__grid {
  display: grid; gap: var(--space-7);
}
@media (min-width: 960px) {
  .ab2-serve__grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
}
.ab2-serve .eyebrow { color: var(--dh-yellow); }
.ab2-serve h2 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.02em;
  margin: var(--space-3) 0 var(--space-5);
  line-height: 1.12;
  max-width: 16ch;
}
.ab2-serve__body { font-size: var(--fs-16); color: rgba(255,255,255,0.8); line-height: 1.6; margin: 0 0 var(--space-5); max-width: 48ch; }
.ab2-serve__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: var(--space-3);
}
.ab2-serve__list li {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: var(--fs-16);
  color: #fff;
}
.ab2-serve__list .tick {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--dh-yellow);
}
.ab2-serve__list .tick svg { width: 13px; height: 13px; }

.ab2-stats { display: grid; gap: var(--space-6); }
.ab2-stat {
  display: grid; gap: var(--space-2);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.16);
}
.ab2-stat__big {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: var(--fw-bold);
  letter-spacing: -0.035em;
  color: #fff;
  line-height: 1;
  margin: 0;
}
.ab2-stat__big .unit { color: var(--dh-orange); }
.ab2-stat__big .small { font-size: 0.5em; vertical-align: super; color: var(--dh-orange); margin-right: 2px; }
.ab2-stat__label { font-size: var(--fs-14); color: rgba(255,255,255,0.85); margin: 0; line-height: 1.45; max-width: 30ch; }
.ab2-serve__close {
  grid-column: 1 / -1;
  margin: var(--space-7) 0 0;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: var(--fs-18);
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
}
.ab2-serve__close strong { color: #fff; font-weight: var(--fw-medium); }

/* -----------------------------------------------------------
   6 — TEAM (compact)
   ----------------------------------------------------------- */
.ab2-team {
  padding: 56px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}
@media (min-width: 768px) { .ab2-team { padding: 72px 0; } }
.ab2-team__head {
  display: flex; align-items: end; justify-content: space-between;
  gap: var(--space-5); flex-wrap: wrap;
  margin-bottom: var(--space-6);
}
.ab2-team__head h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -0.02em;
  color: var(--dh-navy);
  margin: var(--space-3) 0 0;
  line-height: 1.1;
}
.ab2-team__note {
  font-size: var(--fs-12);
  color: var(--fg-2);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  padding: 5px 12px;
  border: 1px dashed var(--border-1);
  border-radius: var(--radius-pill);
}
.ab2-team__grid {
  display: grid; gap: var(--space-3);
  grid-template-columns: 1fr;
}
@media (min-width: 560px)  { .ab2-team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px)  { .ab2-team__grid { grid-template-columns: repeat(5, 1fr); } }

.ab2-person {
  display: grid; gap: var(--space-4);
  padding: var(--space-5);
  background: var(--dh-white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  text-align: center;
  justify-items: center;
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
@media (hover: hover) {
  .ab2-person:hover { border-color: var(--dh-navy); box-shadow: var(--shadow-2); transform: translateY(-2px); }
}
.ab2-person__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--dh-navy);
  color: var(--dh-yellow);
  font-weight: var(--fw-bold);
  font-size: var(--fs-18);
}
.ab2-person__avatar--a1 { background: linear-gradient(135deg, #244271 0%, #193359 100%); }
.ab2-person__avatar--a2 { background: linear-gradient(135deg, #1B345B 0%, #0E1F39 100%); }
.ab2-person__avatar--a3 { background: linear-gradient(135deg, #3C5A88 0%, #244271 100%); }
.ab2-person__avatar--a4 { background: linear-gradient(135deg, #2A4673 0%, #14274A 100%); }
.ab2-person__avatar--photo { object-fit: cover; object-position: center top; padding: 0; }
.ab2-person__name {
  font-size: var(--fs-14);
  font-weight: var(--fw-semibold);
  color: var(--dh-navy);
  line-height: 1.3;
}
a.ab2-person {
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: border-color 150ms cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 150ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 150ms cubic-bezier(0.23, 1, 0.32, 1);
}
a.ab2-person::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230A66C2'%3E%3Cpath d='M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 01-2.063-2.065 2.064 2.064 0 112.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 150ms cubic-bezier(0.23, 1, 0.32, 1);
}
@media (hover: hover) {
  a.ab2-person:hover::after { opacity: 1; }
}
.ab2-person__role {
  font-size: var(--fs-14);
  font-weight: var(--fw-bold);
  color: var(--dh-navy);
  line-height: 1.3;
}

/* -----------------------------------------------------------
   7 — OUR BELIEF
   ----------------------------------------------------------- */
.ab2-close {
  background: var(--bg-1);
  padding: 36px 0;
}
@media (min-width: 768px) { .ab2-close { padding: 48px 0; } }
.ab2-close .eyebrow { color: var(--dh-orange); }
.ab2-belief {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: var(--fw-bold);
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--dh-navy);
  margin: var(--space-3) 0 var(--space-6);
  max-width: 16ch;
  text-wrap: balance;
}
.ab2-belief .accent { color: var(--dh-orange); }
.ab2-tenets {
  display: grid; gap: var(--space-4);
  grid-template-columns: 1fr;
  max-width: 880px;
}
@media (min-width: 760px) { .ab2-tenets { grid-template-columns: repeat(3, 1fr); } }
.ab2-tenet {
  padding: var(--space-5);
  background: var(--dh-white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  border-top: 2px solid var(--dh-navy);
}
.ab2-tenet .neg {
  font-size: var(--fs-14);
  font-weight: var(--fw-bold);
  color: var(--dh-grey);
  text-decoration: line-through;
  text-decoration-color: var(--dh-grey-light);
  margin: 0 0 var(--space-2);
}
.ab2-tenet .pos {
  font-size: var(--fs-16);
  color: var(--dh-navy);
  margin: 0;
  line-height: 1.45;
}

/* -----------------------------------------------------------
   8 — Bottom CTA (navy panel — matches Home / Product / Pricing)
   ----------------------------------------------------------- */
.pr-cta {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background: var(--dh-navy);
  color: #fff;
}
@media (min-width: 768px) { .pr-cta { padding: 56px 0; } }
.pr-cta__motif {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 52'><polygon points='30,1 59,17 59,35 30,51 1,35 1,17' fill='none' stroke='%23ffffff' stroke-width='0.4' stroke-opacity='0.06'/></svg>");
  background-size: 60px 52px;
  pointer-events: none;
}
.pr-cta .container { position: relative; z-index: 1; }
.pr-cta__grid {
  display: grid;
  gap: var(--space-6);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .pr-cta__grid { grid-template-columns: 1fr auto; gap: 48px; } }
.pr-cta__copy { max-width: 620px; }
/* .pr-cta__eyebrow — consolidated into site.css */
.pr-cta h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: #fff;
  margin: 0 0 var(--space-3);
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.pr-cta p {
  font-size: var(--fs-18);
  color: rgba(255,255,255,0.78);
  margin: 0 0 var(--space-5);
  line-height: 1.55;
  max-width: 56ch;
}
.pr-cta__buttons { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.pr-cta .btn--accent {
  background: var(--dh-orange);
  color: #fff;
  border: 1px solid var(--dh-orange);
}
@media (hover: hover) {
  .pr-cta .btn--accent:hover { background: var(--link-hover); border-color: var(--link-hover); }
  .pr-cta .btn--accent:hover .arrow { transform: translateX(3px); }
}
.pr-cta .btn--accent .arrow { transition: transform var(--dur-base) var(--ease-out); }
/* .btn--ghost-light base → site.css; page-level sizing only */
.btn--ghost-light {
  padding: 12px 22px;
  font-weight: var(--fw-bold);
  font-size: var(--fs-16);
}
.pr-cta__art { display: none; }
@media (min-width: 720px) {
  .pr-cta__art { display: flex; align-items: center; justify-content: center; }
}
.pr-cta__org { width: 240px; height: 240px; flex-shrink: 0; }
@keyframes cdaoFlow { to { stroke-dashoffset: -20; } }
.cdao-line {
  stroke-dasharray: 4 6;
  animation: cdaoFlow 2s linear infinite;
}
.cdao-line:nth-child(2) { animation-duration: 2.5s; }
.cdao-line:nth-child(3) { animation-duration: 1.8s; }
.cdao-line:nth-child(4) { animation-duration: 2.3s; }
.cdao-line:nth-child(5) { animation-duration: 2.7s; }
@media (prefers-reduced-motion: reduce) { .cdao-line { animation: none; } }

