.about-intro { padding-block: 5rem; }
.intro-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4rem; align-items: start; }

/* Exact SVG path mask for the notch (diagonal chamfer with curved
   transitions) — the photo itself carries the clip, not a wrapper card. */
.counter-figure { --r: 16px; position: relative; }
.counter-figure::before { content: ""; position: absolute; inset: 0; z-index: 0; background: transparent; border-radius: var(--r); }
.counter-photo {
  position: relative; z-index: 1;
  border-radius: var(--r); overflow: hidden;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 328 407%27 preserveAspectRatio=%27none%27%3E%3Cpath fill=%27%23fff%27 d=%27M0 51.5C0 42.6634 7.16344 35.5 16 35.5H131.246C140.348 35.5 149.019 31.6239 155.09 24.8419L167.785 10.6582C173.856 3.87609 182.527 0 191.629 0H312C320.837 0 328 7.16344 328 16V391C328 399.837 320.837 407 312 407H16C7.16345 407 0 399.837 0 391V51.5Z%27/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 328 407%27 preserveAspectRatio=%27none%27%3E%3Cpath fill=%27%23fff%27 d=%27M0 51.5C0 42.6634 7.16344 35.5 16 35.5H131.246C140.348 35.5 149.019 31.6239 155.09 24.8419L167.785 10.6582C173.856 3.87609 182.527 0 191.629 0H312C320.837 0 328 7.16344 328 16V391C328 399.837 320.837 407 312 407H16C7.16345 407 0 399.837 0 391V51.5Z%27/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
.counter-photo img { width: 100%; height: auto; display: block; }

/* Floating stat badge, overlapping the photo's bottom-right corner */
.stat-badge {
  position: absolute; right: -1.25rem; bottom: -1.5rem; z-index: 1;
  background: var(--ink); color: var(--bg);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  padding: 1.5rem 1.9rem 1.3rem 1.6rem;
  box-shadow: 0 16px 32px oklch(25% 0.05 252 / 0.28);
}
.counter-num { font-family: var(--display); font-weight: 700; font-size: 2.75rem; line-height: 1; color: var(--bg); }
.counter-label { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sky); margin-top: 0.3rem; white-space: nowrap; }

.about-intro h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); margin: 0.75rem 0 1.5rem; }

.faq-pointer { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2rem; font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.04em; }
.faq-pointer a { display: inline-flex; align-items: center; gap: 0.4rem; text-decoration: none; font-weight: 500; }
.faq-pointer a svg { transition: transform 0.15s ease-out; }
.faq-pointer a:hover svg { transform: translateX(4px); }

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .stat-badge { right: 0; bottom: -1rem; padding: 1.1rem 1.4rem 1rem 1.2rem; }
  .counter-num { font-size: 2.1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .faq-pointer a svg { transition: none; }
}
