/* ── About Hero ── */
.ab-hero {
  /* min-height: 100vh; */
  padding: 130px 64px 0;
  display: flex;
  justify-content: flex-end;
}

/* content container */
.ab-hero-body {
  display: flex;
  flex-direction: column;
  gap: 48px;

  width: min(1200px, 100%);
  margin: 0 auto;
}

/* top section */
.ab-hero-top {}

/* bottom layout */
.ab-hero-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;

  border-top: 1px solid var(--border);
  padding: 32px 0 48px;
}


/* ── DATA STRIP (FIXED BALANCE) ── */
.ab-data-strip {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}

/* each stat */
.ab-data-item {
  display: flex;
  flex-direction: column;
  gap: 6px;

  padding: 14px 16px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);

  transition: all 0.25s ease;
  min-width: 120px;
}

/* hover lift */
.ab-data-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

/* ── HIGHLIGHT 300+ (PRIMARY METRIC) ── */
.ab-highlight {
  background: linear-gradient(
    135deg,
    rgba(255, 59, 59, 0.14),
    rgba(255, 255, 255, 0.03)
  );

  border: 1px solid rgba(255, 59, 59, 0.28);
  position: relative;
}

/* glow effect */
.ab-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  box-shadow: 0 0 28px rgba(255, 59, 59, 0.18);
  pointer-events: none;
}

/* number styling */
.ab-data-num {
  font-family: var(--fh);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1px;
  color: var(--white);
}

/* red accent parts */
.ab-data-num .r {
  color: #ff3b3b;
  font-weight: 800;
}

/* label */
.ab-data-label {
  font-family: var(--fu);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}

/* divider */
.ab-data-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
}

/* spine */
.ab-spine {
  position: absolute;
  left: 20px;
  bottom: 40%;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left center;
  font-family: var(--fu);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted2);
  white-space: nowrap;
  pointer-events: none;
}

/* ── MOBILE ── */
@media (max-width: 768px) {

  .ab-hero {
    padding: 110px 24px 0;
  }

  .ab-spine {
    display: none;
  }

  .ab-hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .ab-data-strip {
    width: 100%;
    justify-content: space-between;
  }

  .ab-data-item {
    flex: 1;
    min-width: unset;
  }

  .ab-data-divider {
    display: none;
  }
}

/* container */
.ab-ig-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-top: 20px;
  scroll-snap-type: x mandatory;
}

/* hide scrollbar */
.ab-ig-row::-webkit-scrollbar {
  display: none;
}

/* card */
.ab-ig-card {
  flex: 0 0 240px;
  height: 320px;

  position: relative;
  border-radius: 16px;
  overflow: hidden;

  scroll-snap-align: start;
  cursor: pointer;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);

  transition: 0.3s ease;
}

/* video */
.ab-ig-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.3s ease;
}

/* hover */
.ab-ig-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.15);
}

.ab-ig-card:hover video {
  transform: scale(1.05);
}

/* label */
.ab-ig-card span {
  position: absolute;
  left: 10px;
  bottom: 10px;

  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;

  padding: 6px 10px;
  border-radius: 999px;

  background: rgba(0,0,0,0.55);
  color: #fff;
}
/* controls wrapper */
.ab-ig-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  margin-top: 18px;
}

/* button */
.ab-ig-btn {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);

  color: #fff;
  cursor: pointer;

  transition: 0.2s ease;
}

.ab-ig-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.25);
}

/* center divider line */
.ab-ig-line {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.perspective-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 450px;
}

.perspective-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1.05);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.perspective-visual:hover img {
  transform: scale(1) translateY(-12px);
  filter: brightness(0.9);
}

/* optional: better spacing between cards */
.perspective-stack .wp {
  margin-bottom: 18px;
}