/* ============================================================
   VTechnocrat — About page styles (.abt-*)
   Loaded only on the About page (see about.php wrapper)
   Note: intro-two-section reuses the global .ind-card pattern
   (vtechnocrat.css) — nothing for it is duplicated here.
   ============================================================ */

.abt-intro,
.abt-support,
.abt-tst,
.abt-video,
.abt-stats,
.tmf{
  --abt-brand:      var(--brand, #87E64B);
  --abt-brand-2:    var(--brand-2, #92c94b);
  --abt-brand-deep: #2F7A19;
  --abt-ink:        var(--ink, #0B0D0C);
  --abt-muted:      var(--muted, #6B736E);
  --abt-line:       var(--line, #E6EAE7);
  --abt-surface:    var(--surface, #F7FAF5);
  --abt-r:          var(--r, 18px);
  --abt-pill:       var(--pill, 999px);
  --abt-transition: var(--transition, .3s cubic-bezier(.4, 0, .2, 1));
}

/* shared eyebrow / heading / lede head pattern */
.abt-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid var(--abt-line);
  border-radius: var(--abt-pill);
  background: var(--abt-surface);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--abt-brand-deep);
  margin-bottom: 18px;
}
.abt-eyebrow i{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--abt-brand-2);
}
.abt-h2{
  margin: 0 0 16px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--abt-ink);
}
.abt-hl{ color: var(--abt-brand-deep); }
.abt-lede{
  margin: 0 0 26px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--abt-muted);
  max-width: 58ch;
}

/* shared scroll reveal */
[data-abt-reveal]{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-abt-reveal].is-in{
  opacity: 1;
  transform: none;
}

/* ==========================================
   About Hero/Intro — START
   ========================================== */

.abt-intro{
  padding: 76px 0 84px;
  background: #fff;
}
.abt-intro__grid{
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 56px;
  align-items: center;
}

/* staggered two-image mosaic — animates with the copy */
.abt-intro__media[data-abt-reveal],
.abt-intro__content[data-abt-reveal]{
  opacity: 1;
  transform: none;
}
.abt-intro__media{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) 40px minmax(0, 1fr);
  grid-template-rows: 28px minmax(180px, 1fr) auto;
  gap: 0;
  isolation: isolate;
  min-height: 460px;
}
/* connector lives in the gap only — never on top of the photos */
.abt-intro__blob{
  grid-column: 2;
  grid-row: 1 / 4;
  position: relative;
  z-index: 0;
  top: auto;
  left: auto;
  width: auto;
  height: auto;
  align-self: stretch;
  overflow: hidden;
  border-radius: 0;
  background: none;
  border: 0;
  pointer-events: none;
}
.abt-intro__blob-h,
.abt-intro__blob-v,
.abt-intro__blob-h2{
  position: absolute;
  border-radius: 0;
  background: repeating-linear-gradient(
    90deg,
    var(--abt-brand-2) 0 7px,
    #fff 7px 8px,
    transparent 8px 14px
  );
  box-shadow: 0 0 0 1px #fff;
}
.abt-intro__blob-h{
  top: 32%;
  left: 0;
  width: 50%;
  height: 3px;
}
.abt-intro__blob-v{
  top: 32%;
  left: 50%;
  width: 3px;
  height: 48%;
  background: repeating-linear-gradient(
    180deg,
    var(--abt-brand-2) 0 7px,
    #fff 7px 8px,
    transparent 8px 14px
  );
}
.abt-intro__blob-h2{
  top: auto;
  bottom: 20%;
  left: 50%;
  width: 50%;
  height: 3px;
}
.abt-intro__blob-dot{
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--abt-brand);
  box-shadow: 0 0 0 4px rgba(135, 230, 75, .28);
  animation: abtBlobDot 3.2s linear infinite;
  animation-play-state: paused;
}
.abt-intro__media.is-in .abt-intro__blob-dot{
  animation-play-state: running;
}
@keyframes abtBlobDot{
  0%{ top: 32%; left: 0; }
  40%{ top: 32%; left: 50%; }
  72%{ top: 80%; left: 50%; }
  100%{ top: 80%; left: 100%; }
}
.abt-intro__img1,
.abt-intro__img2{
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--abt-surface);
  opacity: 0;
}
.abt-intro__img1{
  grid-column: 1;
  grid-row: 1 / 4;
  border-radius: calc(var(--abt-r) + 6px);
  border: 1px solid var(--abt-line);
  box-shadow: 0 24px 60px rgba(11, 13, 12, .12);
  transform: translateX(-36px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1),
              transform .7s cubic-bezier(.22, 1, .36, 1);
}
.abt-intro__img1 img{
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 1.1s cubic-bezier(.22, 1, .36, 1);
}
.abt-intro__img2{
  grid-column: 3;
  grid-row: 2 / 3;
  align-self: center;
  margin-top: 12%;
  border-radius: var(--abt-r);
  border: 6px solid #fff;
  box-shadow: 0 18px 44px rgba(11, 13, 12, .18);
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1) .16s,
              transform .7s cubic-bezier(.22, 1, .36, 1) .16s;
}
.abt-intro__img2 img{
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 1.1s cubic-bezier(.22, 1, .36, 1) .16s;
}
.abt-intro__media.is-in .abt-intro__img1,
.abt-intro__media.is-in .abt-intro__img2{
  opacity: 1;
  transform: none;
}
.abt-intro__media.is-in .abt-intro__img1 img,
.abt-intro__media.is-in .abt-intro__img2 img{
  transform: scale(1.04);
}
.abt-intro__media.is-in .abt-intro__img2{
  animation: abtImgFloat 5.2s ease-in-out 1s infinite;
}
@keyframes abtImgFloat{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}
.abt-intro__img1:hover img,
.abt-intro__img2:hover img{
  transform: scale(1.08);
}
.abt-intro__media img.is-placeholder{ object-fit: contain; opacity: .6; }

/* copy children stagger — same beat as the images */
.abt-intro__content > *{
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .6s cubic-bezier(.22, 1, .36, 1),
              transform .6s cubic-bezier(.22, 1, .36, 1);
}
.abt-intro__content.is-in > *{
  opacity: 1;
  transform: none;
}
.abt-intro__content.is-in .abt-eyebrow{ transition-delay: .06s; }
.abt-intro__content.is-in .abt-h2{ transition-delay: .14s; }
.abt-intro__content.is-in .abt-lede{ transition-delay: .22s; }
.abt-intro__content.is-in .abt-intro__mid{ transition-delay: .3s; }
.abt-intro__content.is-in .abt-intro__list{ transition-delay: .38s; }
.abt-intro__content.is-in .abt-intro__strip{ transition-delay: .46s; }

/* two icon-box highlights */
.abt-intro__points{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 26px 0;
}
.abt-point{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--abt-line);
  border-radius: var(--abt-r);
  transition: transform var(--abt-transition), border-color var(--abt-transition),
              box-shadow var(--abt-transition);
}
.abt-point:hover{
  transform: translateY(-4px);
  border-color: var(--abt-brand-2);
  box-shadow: 0 0 0 1px var(--abt-brand-2), 0 16px 36px rgba(95, 201, 58, .16);
}
.abt-chip{
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-soft, #EDF9E3);
  border: 1px solid var(--brand-line, #D8F0C6);
  color: var(--abt-brand-deep);
  font-size: 20px;
  transition: transform var(--abt-transition);
}
.abt-point:hover .abt-chip{ transform: translateY(-3px) rotate(-6deg); }
.abt-point h3{
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--abt-ink);
}
.abt-point p{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--abt-muted);
}

/* intro side layout: points + ring */
.abt-intro__mid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

/* animated conic progress ring */
.abt-ring{
  --p: 0;
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: conic-gradient(var(--abt-brand-2) calc(var(--p) * 1%), var(--abt-line) 0);
  display: grid;
  place-items: center;
  margin: 0 auto;
}
.abt-ring::before{
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: #fff;
}
.abt-ring__val{
  position: relative;
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--abt-ink);
}
.abt-ring__val small{
  font-size: 17px;
  font-weight: 800;
  color: var(--abt-brand-deep);
}
.abt-ring-wrap{ text-align: center; }
.abt-ring-wrap h3{
  margin: 14px 0 0;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--abt-ink);
  max-width: 160px;
}

/* checklist */
.abt-intro__list{
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.abt-intro__list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--abt-ink);
}
.abt-intro__list li i{
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--abt-brand-deep);
  font-size: 17px;
}

/* bottom banner strip (image4 + text7) */
.abt-intro__strip{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  border-radius: var(--abt-pill);
  background: var(--abt-ink);
}
.abt-intro__strip img{
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--abt-brand);
  background: #fff;
}
.abt-intro__strip p{
  margin: 0;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}

/* ==========================================
   About Hero/Intro — END
   ========================================== */


/* ==========================================
   Intro Cards (Industries-style, reused pattern)
   — intentionally EMPTY: intro-two-section.php uses the
   global .ind-card component already styled in
   vtechnocrat.css. Nothing duplicated here.
   ========================================== */


/* ==========================================
   About Support Section — START
   ========================================== */

.abt-support{
  padding: 84px 0;
  background: var(--abt-surface);
}
.abt-support__grid{
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 56px;
  align-items: center;
}
.abt-support__media{
  position: relative;
}
.abt-support__media > .abt-support__img{
  border-radius: calc(var(--abt-r) + 6px);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--abt-line);
  box-shadow: 0 24px 60px rgba(11, 13, 12, .12);
}
.abt-support__img img{
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  display: block;
}
.abt-support__img img.is-placeholder{ object-fit: contain; opacity: .6; }
.abt-support__badge{
  position: absolute;
  top: -20px;
  right: -14px;
  width: 92px;
  height: 92px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--abt-line);
  box-shadow: 0 14px 34px rgba(11, 13, 12, .12);
  display: grid;
  place-items: center;
  padding: 14px;
}
.abt-support__badge img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.abt-support .abt-point{ background: #fff; }
@media (max-width: 720px) {
    .abt-support__badge {
        display: none;
    }
    .abt-support{
        padding: 46px 0;
    }
  }

/* ==========================================
   About Support Section — END
   ========================================== */
/* ==========================================
   About CEO Section — START
   ========================================== */

.abt-ceo{ padding: 40px 0; position: relative; overflow: hidden; }
.abt-ceo__grid{
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.abt-ceo__content{ min-width: 0; }

.abt-ceo__title{
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 22px;
}
.abt-ceo__title .abt-hl{ color: var(--abt-forest, #2F7A19); }
.abt-ceo__text{
  color: var(--abt-muted, #6B736E);
  font-size: 16px; line-height: 1.75; margin-bottom: 16px; max-width: 60ch;
}
.abt-ceo__text:last-of-type{ margin-bottom: 0; }
.abt-ceo__sign{
  display: flex; align-items: center; gap: 14px;
  margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--abt-line, #E6EAE7);
}
.abt-ceo__sign b{ font-size: 18px; font-weight: 800; }
.abt-ceo__sign span{ display: block; font-size: 13.5px; color: var(--abt-muted, #6B736E); }

/* ---- Portrait card ---- */
.abt-ceo__media{ position: relative; display: flex; justify-content: center; }
.abt-ceo__card{
  position: relative; width: 100%; max-width: 340px;
  border-radius: 28px; padding: 40px 28px 32px; text-align: center; color: #fff;
  background: linear-gradient(160deg, var(--abt-forest, #2F7A19) 0%, #1f5610 55%, #143c0b 100%);
  box-shadow: 0 30px 60px rgba(47, 122, 25, .28);
  overflow: hidden; isolation: isolate;
  transition: transform .35s ease, box-shadow .35s ease;
}
.abt-ceo__media:hover .abt-ceo__card{
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(47, 122, 25, .36);
}

/* animated blobs inside card */
.abt-ceo__card::before,
.abt-ceo__card::after{ content: ""; position: absolute; border-radius: 50%; z-index: -1; }
.abt-ceo__card::before{
  width: 220px; height: 220px; top: -70px; right: -70px;
  background: radial-gradient(circle, rgba(123,224,79,.55), transparent 70%);
  animation: abtCeoFloat 7s ease-in-out infinite;
}
.abt-ceo__card::after{
  width: 180px; height: 180px; bottom: -60px; left: -50px;
  background: radial-gradient(circle, rgba(123,224,79,.35), transparent 70%);
  animation: abtCeoFloat 9s ease-in-out infinite reverse;
}
@keyframes abtCeoFloat{
  0%, 100%{ transform: translate(0, 0) scale(1); }
  50%{ transform: translate(-16px, 18px) scale(1.12); }
}

/* rotating ring around avatar */
.abt-ceo__ring{ position: relative; width: 160px; height: 160px; margin: 0 auto 22px; }
.abt-ceo__ring::before{
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--abt-lime, #7BE04F), transparent 55%, var(--abt-lime, #7BE04F));
  animation: abtCeoSpin 6s linear infinite;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
}
@keyframes abtCeoSpin{ to{ transform: rotate(360deg); } }
.abt-ceo__avatar{
  position: absolute; inset: 0; border-radius: 50%; overflow: hidden;
  border: 5px solid rgba(255, 255, 255, .14);
}
.abt-ceo__avatar img{ width: 100%; height: 100%; object-fit: cover; display: block; }

.abt-ceo__card h3{ font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.abt-ceo__role{ font-size: 13px; color: rgba(255, 255, 255, .8); margin-bottom: 20px; }
.abt-ceo__socials{ display: flex; justify-content: center; gap: 10px; }
.abt-ceo__socials a{
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: #fff;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .18);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.abt-ceo__socials a:hover{ transform: translateY(-4px); background: var(--abt-lime, #7BE04F); color: var(--abt-forest, #2F7A19); }

/* ambient section blob */
.abt-ceo__blob{
  position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(123,224,79,.14), transparent 70%);
  top: -140px; right: -120px; z-index: 0; pointer-events: none;
  animation: abtCeoFloat 12s ease-in-out infinite;
}

/* scroll reveal */
.abt-ceo [data-abt-reveal]{ opacity: 0; transform: translateY(24px); animation: abtCeoReveal .7s ease forwards; }
.abt-ceo__media[data-abt-reveal]{ animation-delay: .15s; }
@keyframes abtCeoReveal{ to{ opacity: 1; transform: none; } }

/* responsive: image on top, text below */
@media (max-width: 900px){
  .abt-ceo{ padding: 64px 0; }
  .abt-ceo__grid{ grid-template-columns: 1fr; gap: 40px; }
  .abt-ceo__media{ order: -1; }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .abt-ceo__card::before,
  .abt-ceo__card::after,
  .abt-ceo__ring::before,
  .abt-ceo__blob,
  .abt-ceo [data-abt-reveal]{ animation: none; }
  .abt-ceo [data-abt-reveal]{ opacity: 1; transform: none; }
}

/* ==========================================
   About CEO Section — END
   ========================================== */

/* ==========================================
   About Testimonials (lightweight carousel) — START
   (no working shared .tst component exists on this
    site — the old owl-carousel vendors are unloaded —
    so this module carries its own dependency-free one)
   ========================================== */

.abt-tst{
  padding: 84px 0;
  background: #fff;
}
.abt-tst__head{
  text-align: center;
  max-width: 640px;
  margin: 0 auto 38px;
}
.abt-tst__track{
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px;
  cursor: grab;
}
.abt-tst__track::-webkit-scrollbar{ display: none; }
.abt-tst__track.is-dragging{ cursor: grabbing; scroll-snap-type: none; }

.abt-tst-card{
  flex: 0 0 calc(50% - 12px);
  min-width: 0;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--abt-line);
  border-radius: var(--abt-r);
  padding: 28px;
  transition: transform var(--abt-transition), border-color var(--abt-transition),
              box-shadow var(--abt-transition);
}
.abt-tst-card:hover{
  transform: translateY(-4px);
  border-color: var(--abt-brand-2);
  box-shadow: 0 0 0 1px var(--abt-brand-2), 0 16px 36px rgba(95, 201, 58, .14);
}
.abt-tst-card__stars{
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: #F5B301;
  font-size: 15px;
}
.abt-tst-card__stars .is-off{ color: var(--abt-line); }
.abt-tst-card h3{
  margin: 0 0 8px;
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--abt-ink);
}
.abt-tst-card__quote{
  margin: 0 0 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--abt-muted);
}
.abt-tst-card__who{
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--abt-line);
}
.abt-tst-card__who img{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-line, #D8F0C6);
  background: var(--abt-surface);
}
.abt-tst-card__who h4{
  margin: 0 0 2px;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--abt-ink);
}
.abt-tst-card__who p{
  margin: 0;
  font-size: 13px;
  color: var(--abt-muted);
}

.abt-tst__nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}
.abt-tst__btn{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--abt-line);
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--abt-ink);
  cursor: pointer;
  transition: border-color var(--abt-transition), background var(--abt-transition),
              color var(--abt-transition);
}
.abt-tst__btn:hover{
  border-color: var(--abt-brand-2);
  background: var(--brand-soft, #EDF9E3);
  color: var(--abt-brand-deep);
}
.abt-tst__dots{
  display: flex;
  gap: 8px;
}
.abt-tst__dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: var(--abt-line);
  cursor: pointer;
  transition: background var(--abt-transition), transform var(--abt-transition);
}
.abt-tst__dot.is-active{
  background: var(--abt-brand-2);
  transform: scale(1.3);
}

/* ==========================================
   About Testimonials — END
   ========================================== */


/* ==========================================
   About Video Section — START
   ========================================== */

.abt-video{
  padding: 0 0 84px;
  background: #fff;
}
.abt-video__inner{
  position: relative;
  border-radius: calc(var(--abt-r) + 8px);
  overflow: hidden;
  min-height: 380px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 24px;
  isolation: isolate;
}
.abt-video__bg{
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.abt-video__inner::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11, 13, 12, .55), rgba(11, 13, 12, .72));
}
.abt-video__play{
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 0;
  background: var(--abt-brand);
  color: var(--abt-ink);
  font-size: 28px;
  display: grid;
  place-items: center;
  cursor: pointer;
  margin: 0 auto 26px;
  transition: transform var(--abt-transition), box-shadow var(--abt-transition);
}
.abt-video__play:hover{
  transform: scale(1.08);
  box-shadow: 0 0 0 12px rgba(135, 230, 75, .22);
}
.abt-video__play::after{
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid rgba(135, 230, 75, .45);
  animation: abtPulse 2.2s ease-out infinite;
}
@keyframes abtPulse{
  0%{ transform: scale(.85); opacity: 1; }
  100%{ transform: scale(1.25); opacity: 0; }
}
.abt-video__inner h2{
  margin: 0;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
  max-width: 22ch;
}

/* video lightbox */
.abt-video__modal{
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(11, 13, 12, .82);
}
.abt-video__modal[hidden]{ display: none; }
.abt-video__frame{
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: var(--abt-r);
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}
.abt-video__frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.abt-video__close{
  position: absolute;
  top: 22px;
  right: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--abt-ink);
  font-size: 19px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

/* ==========================================
   About Video Section — END
   ========================================== */


/* ==========================================
   About Counter/Stats Section — START
   ========================================== */

.abt-stats{
  position: relative;
  padding: 84px 0;
  isolation: isolate;
  background: var(--abt-ink);
}
.abt-stats__bg{
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.abt-stats::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11, 13, 12, .88), rgba(11, 13, 12, .82));
}
.abt-stats__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.abt-stat{
  text-align: center;
  padding: 34px 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--abt-r);
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(3px);
  transition: transform var(--abt-transition), border-color var(--abt-transition);
}
.abt-stat:hover{
  transform: translateY(-4px);
  border-color: var(--abt-brand-2);
}
.abt-stat__num{
  margin: 0 0 8px;
  font-size: clamp(38px, 4.6vw, 54px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1;
}
.abt-stat__num b{
  font-weight: 800;
  color: var(--abt-brand);
}
.abt-stat__label{
  margin: 0;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255, 255, 255, .72);
}

/* bottom CTA strip (text17 + field19/20) */
.abt-stats__cta{
  margin-top: 52px;
  text-align: center;
}
.abt-stats__cta h2{
  margin: 0 auto 24px;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.25;
  color: #fff;
  max-width: 30ch;
}
.abt-stats__cta-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--abt-pill);
  background: var(--abt-brand);
  font-size: 15px;
  font-weight: 700;
  color: var(--abt-ink);
  text-decoration: none;
  transition: gap var(--abt-transition), box-shadow var(--abt-transition);
}
.abt-stats__cta-btn:hover{
  gap: 12px;
  box-shadow: 0 12px 30px rgba(135, 230, 75, .3);
}

/* ==========================================
   About Counter/Stats Section — END
   ========================================== */


/* ==========================================
   Team Section (tmf) — START
   Static grid, dark square cards, white section
   ========================================== */
.tmf{
  --tmf-ease:.45s cubic-bezier(.4,0,.2,1);
  --tmf-panel-ease:.35s cubic-bezier(.4,0,.2,1);
  --tmf-grid:56px;
  --tmf-brand:#87E64B;
  --tmf-brand-2:#5FC93A;
  --tmf-ink:#0B0D0C;
  position:relative;
  overflow:hidden;
  padding:88px 0 80px;
  background:#fff;
}

.tmf__bg{
  position:absolute; inset:0; pointer-events:none; z-index:0;
  background-color:#fff;
  background-image:
    linear-gradient(to right, rgba(11,13,12,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,13,12,.06) 1px, transparent 1px);
  background-size:var(--tmf-grid) var(--tmf-grid);
}

.tmf__head{ position:relative; z-index:2; text-align:center; margin-bottom:48px; padding:0 20px; }
.tmf__eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; color:#6B736E; margin-bottom:14px;
}
.tmf__eyebrow i{ width:8px; height:8px; border-radius:50%; background:var(--tmf-brand); }
.tmf__title{
  margin:0; font-size:clamp(28px,4.5vw,46px); font-weight:800;
  letter-spacing:-.03em; color:var(--tmf-ink);
}
.tmf__title span{ color:#2F6B14; }

.tmf__stage{ position:relative; z-index:2; }
.tmf__track{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:28px;
  align-items:stretch;
}

.tmf-card{
  position:relative;
  min-height:480px;
  border-radius:22px;
  overflow:hidden;
  background-color:#fff;
  background-image:
    linear-gradient(to right, rgba(11,13,12,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,13,12,.06) 1px, transparent 1px);
  background-size:28px 28px;
  border:1px solid #E6EAE7;
  box-shadow:
    0 4px 8px rgba(11,13,12,.05),
    0 16px 36px rgba(11,13,12,.08);
  transform-style:preserve-3d;
  transition:transform var(--tmf-ease), box-shadow var(--tmf-ease), border-color var(--tmf-ease), background-color var(--tmf-ease), background-image var(--tmf-ease);
}
.tmf-card:hover{
  transform:translateY(-10px);
  background-color:#0B0D0C;
  background-image:
    linear-gradient(to right, rgba(135,230,75,.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(135,230,75,.10) 1px, transparent 1px);
  border-color:rgba(135,230,75,.5);
  box-shadow:
    0 8px 16px rgba(11,13,12,.08),
    0 24px 48px rgba(11,13,12,.16),
    0 0 0 1px var(--tmf-brand),
    0 28px 70px rgba(135,230,75,.22);
}

/* green swoop like ID template */
.tmf-card__swoop{
  position:absolute; left:-18%; top:-8%;
  width:136%; height:210px; z-index:1;
  background:linear-gradient(160deg, var(--tmf-brand) 0%, var(--tmf-brand-2) 100%);
  border-radius:0 0 62% 38%;
  transform:rotate(-8deg);
}
.tmf-card__logo{
  position:absolute; top:16px; right:16px; z-index:3;
  width:42px; height:42px; border-radius:10px;
  background:rgba(255,255,255,.92);
  display:grid; place-items:center; overflow:hidden;
  box-shadow:0 6px 16px rgba(11,13,12,.18);
}
.tmf-card__logo img{ width:78%; height:78%; object-fit:contain; }

.tmf-card__inner{
  position:relative; z-index:2;
  display:flex; flex-direction:column; align-items:center;
  padding:78px 22px 56px;
  text-align:center;
}

/* square photo */
.tmf-card__photo{
  width:148px; height:148px;
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  border:5px solid #fff;
  box-shadow:0 10px 24px rgba(11,13,12,.12);
  margin-bottom:28px;
  transition:transform var(--tmf-ease), box-shadow var(--tmf-ease), border-color var(--tmf-ease);
}
.tmf-card:hover .tmf-card__photo{
  transform:translateZ(20px) translateY(-4px);
  box-shadow:0 14px 32px rgba(0,0,0,.32);
}
.tmf-card__photo img{
  width:100%; height:100%; object-fit:cover; object-position:center top; display:block;
}
.tmf-card__photo img.is-placeholder{
  object-fit:contain; object-position:center; padding:18px; background:#fff;
}

.tmf-card__name{
  margin:0 0 8px;
  font-size:clamp(20px, 2.2vw, 26px);
  font-weight:800;
  letter-spacing:-.02em;
  color:#2F6B14;
  line-height:1.2;
  transition:color var(--tmf-ease);
}
.tmf-card:hover .tmf-card__name{ color:var(--tmf-brand); }
.tmf-card__role{
  margin:0;
  font-size:14px;
  font-weight:600;
  color:#6B736E;
  transition:color var(--tmf-ease);
}
.tmf-card:hover .tmf-card__role{ color:rgba(255,255,255,.78); }
.tmf-card__info{
  margin:14px 4px 0;
  font-size:13px;
  font-weight:500;
  line-height:1.55;
  color:#6B736E;
  max-width:34ch;
  transition:color var(--tmf-ease);
}
.tmf-card:hover .tmf-card__info{ color:rgba(255,255,255,.82); }

.tmf-card__foot{
  position:absolute; left:18px; right:18px; bottom:18px; z-index:2;
  height:10px;
  border-top:2px solid var(--tmf-brand);
  border-bottom:2px solid var(--tmf-brand);
  background:var(--tmf-brand);
  opacity:.95;
  box-shadow:0 8px 18px rgba(135,230,75,.28);
}

.tmf__empty{
  position:relative; z-index:2;
  text-align:center; margin:0 auto; max-width:520px;
  padding:44px 20px; border:1px dashed #E6EAE7;
  border-radius:18px; background:#fff; color:#6B736E; font-size:14.5px;
}

@media (max-width:1200px){
  .tmf__track{ grid-template-columns:repeat(3, minmax(0, 1fr)); gap:22px; }
}

@media (max-width:900px){
  .tmf__track{ grid-template-columns:repeat(2, minmax(0, 1fr)); gap:20px; }
  .tmf-card{ min-height:450px; }
  .tmf-card__photo{ width:132px; height:132px; }
}

@media (max-width:768px){
  .tmf{ --tmf-grid:40px; padding:64px 0 56px; }
  .tmf-card{ min-height:430px; }
  .tmf-card__inner{ padding:70px 18px 52px; }
  .tmf-card__photo{ width:120px; height:120px; }
  .tmf-card__name{ font-size:20px; }
}

@media (max-width:560px){
  .tmf__track{ grid-template-columns:1fr; max-width:340px; margin:0 auto; }
  .tmf-card:hover{ transform:translateY(-6px); }
}

@media (prefers-reduced-motion:reduce){
  .tmf-card,.tmf-card__photo,.tmf-card__name,.tmf-card__role,.tmf-card__info{ transition:none; }
  .tmf-card:hover{ transform:none; }
}
/* ==========================================
   Team Section (tmf) — END
   ========================================== */


/* ==========================================
   Responsive — START
   ========================================== */

@media (max-width: 1280px){
  .abt-intro__grid,
  .abt-support__grid{ gap: 40px; }
}

@media (max-width: 991px){
  .abt-intro{ padding: 58px 0 64px; }
  .abt-support,
  .abt-tst,
  .abt-stats{ padding: 64px 0; }
  .abt-video{ padding: 0 0 64px; }

  .abt-intro__grid,
  .abt-support__grid{ grid-template-columns: 1fr; gap: 36px; }
  .abt-intro__media{
    max-width: 560px;
    margin: 0 auto;
    min-height: 0;
    grid-template-columns: 1.2fr 32px .8fr;
    grid-template-rows: 16px auto auto;
    gap: 0;
  }
  .abt-intro__img1{ grid-row: 1 / 3; }
  .abt-intro__img1 img{ min-height: 0; aspect-ratio: 4 / 5; height: auto; }
  .abt-intro__img2{
    grid-column: 3;
    grid-row: 2 / 4;
    margin-top: 0;
    align-self: end;
  }
  .abt-intro__content > *{ transform: translateY(18px); }
  .abt-tst-card{ flex-basis: calc(100% - 0px); }
}

@media (max-width: 720px){
  .abt-intro__blob{ display: none; }
}

@media (max-width: 700px){
  .abt-intro__mid{ grid-template-columns: 1fr; }
  .abt-ring-wrap{ justify-self: center; }
  .abt-intro__media{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }
  .abt-intro__img1,
  .abt-intro__img2{
    grid-column: auto;
    grid-row: auto;
    margin: 0;
    align-self: stretch;
  }
  .abt-intro__img1{ border-radius: var(--abt-r); }
  .abt-intro__img1 img,
  .abt-intro__img2 img{
    min-height: 0;
    aspect-ratio: 3 / 4;
    height: auto;
  }
  .abt-intro__img2{ border-width: 4px; }
  .abt-intro__media.is-in .abt-intro__img2{ animation: none; }
  .abt-stats__grid{ grid-template-columns: 1fr; gap: 16px; }
  .abt-video__inner{ min-height: 320px; padding: 60px 18px; }
  .abt-video__play{ width: 70px; height: 70px; font-size: 24px; }
}

@media (max-width: 380px){
  .abt-intro__strip{ flex-direction: column; text-align: center; border-radius: var(--abt-r); }
  .abt-point{ padding: 15px 16px; }
  .abt-chip{ width: 44px; height: 44px; font-size: 18px; }
  .abt-tst-card{ padding: 20px; }
  .abt-ring{ width: 130px; height: 130px; }
}

@media (prefers-reduced-motion: reduce){
  [data-abt-reveal]{ opacity: 1; transform: none; transition: none; }
  .abt-intro__img1,
  .abt-intro__img2,
  .abt-intro__img1 img,
  .abt-intro__img2 img,
  .abt-intro__content > *{
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
  .abt-intro__media.is-in .abt-intro__img2{ animation: none; }
  .abt-intro__blob-dot{ animation: none; }
  .abt-point, .abt-chip, .abt-stat, .abt-tst-card, .abt-video__play{ transition: none; }
  .abt-point:hover, .abt-stat:hover, .abt-tst-card:hover{ transform: none; }
  .abt-video__play::after{ animation: none; }
}

/* ==========================================
   Responsive — END
   ========================================== */
